Posted on 4th May 2025|42 views
how to hide the content with particular class using jQuery?
Posted on 4th May 2025| views
By Using the below function, you can hide the content with particular class using jquery:
$(document).ready(function()
{ $('#myselector').change(function()
{ $('.statecontent').hide();
}); });