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
Post a Comment