javascript
jquery call a class
jQuery Call a Class If you want to call a class in jQuery, you can use the $(".classname") selector. Example $(document).ready(function(){ $(".classname").click(function(){ $(this).hide(); }); }); The above code will hide the element with the class "classname" when it is clicked. You