how to remove css using jquery without specify the full file name -


i have requirement of removing css file if contains jquery in name.

so if css file eg: jquerycustom.css , should removed reference.

so how extend below achieve requirement?

$(this).removeclass('someclass'); 

$("link[href*=jquery][rel=stylesheet]").attr('disabled', 'disabled'); 

or

$("link[href*=jquery][rel=stylesheet]").remove(); 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -