Thursday, August 1, 2013

Change css of a control using jquery

To Change CSS using jquery there are two ways:
1.Using SwithClass
2.Using remoceClass and addClass
example:

     <div class=''Red"></div>

To remove the css of above div we can use $("#div").removeClass(''Red");//Red is the css class
To add new css we can use  $("#div").removeClass("Yellow");//Yellow is the css Class

when we want to change css class of an element there is an another option in jquery i.e switchClass

eg : $("#div").switchClass("Previousclass","NewClass","1000","behaviour");

it works faster than add and remove class .

enjoy coding

No comments:

Post a Comment

Thanks for your valuable comments

Convert Html to Pdf in azure function and save in blob container

 In this post  I am going to create an azure function ( httpTrigger ) and send html content  which will be converted into PDF and save in bl...