How to call an external css class using jquery.
There are two ways to apply css through jqueryaddClass("your css class name");
addClass will only append the new class to the existing one. so we have to remove the existing class using removeClass(" your css class name") method.
removeClass() is used to remove all the css class.
css() is used to apply style to a specific html component.
How to ?
html : file.html
<p id="powerballNumbers"> Hunger Games, Newsweek, </p><div id ="RioDeJaneiro" class ="McllroyClass"></div>
jquery : file.js
$("#powerballNumbers").css({"background":"yellow"});
$("#RioDeJaneiro").removeClass("McllroyClass").addClass("rihana");
css: file.css
.rihana{
width : 10px;
height : 5 px;
backgroud : url (img_mileycyrus.gif) 0 0;
}
How to create a web application with jquery : a simple web application
http://belazy.blog.com/
No comments:
Post a Comment
Your feedback may help others !!!