textbox style change at runtime
-
i wish to change the font- family at runtime n also font-wt.. is it possible ??
-
i wish to change the font- family at runtime n also font-wt.. is it possible ??
Javascript! Here's an example for FontFamily property of an element:
function displayResult()
{
document.getElementById("p1").style.fontFamily="Impact,Charcoal,sans-serif";
}See link for a W3Schools online interactive example: http://www.w3schools.com/jsref/prop_style_fontfamily.asp[^]
// TODO: Create nice signature
-
i wish to change the font- family at runtime n also font-wt.. is it possible ??
-
i wish to change the font- family at runtime n also font-wt.. is it possible ??
create a css class and apply css class on run time txtName.attribute.add("cssClass",);
-
i wish to change the font- family at runtime n also font-wt.. is it possible ??
yes its possible , but it will remain unchanged , on next reload of the page.