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

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c++ - CryptStringToBinary API behavior -