Skip to content

Instantly share code, notes, and snippets.

@peteboere
Created December 24, 2011 12:49
Show Gist options
  • Save peteboere/1517285 to your computer and use it in GitHub Desktop.
Save peteboere/1517285 to your computer and use it in GitHub Desktop.
jQuery alterClass plugin: Remove element classes with wildcard matching. Optionally add classes.
/**
* jQuery alterClass plugin
*
* Remove element classes with wildcard matching. Optionally add classes:
* $( '#foo' ).alterClass( 'foo-* bar-*', 'foobar' )
*
* Copyright (c) 2011 Pete Boere (the-echoplex.net)
* Free under terms of the MIT license: http://www.opensource.org/licenses/mit-license.php
*
*/
(function ( $ ) {
$.fn.alterClass = function ( removals, additions ) {
var self = this;
if ( removals.indexOf( '*' ) === -1 ) {
// Use native jQuery methods if there is no wildcard matching
self.removeClass( removals );
return !additions ? self : self.addClass( additions );
}
var patt = new RegExp( '\\s' +
removals.
replace( /\*/g, '[A-Za-z0-9-_]+' ).
split( ' ' ).
join( '\\s|\\s' ) +
'\\s', 'g' );
self.each( function ( i, it ) {
var cn = ' ' + it.className + ' ';
while ( patt.test( cn ) ) {
cn = cn.replace( patt, ' ' );
}
it.className = $.trim( cn );
});
return !additions ? self : self.addClass( additions );
};
})( jQuery );
@cdillon
Copy link

cdillon commented Dec 14, 2015

Very nice! Thanks a ton!

@cyberfly999
Copy link

Wonderful, thank you very much!

@tcomert
Copy link

tcomert commented Mar 21, 2016

Very useful, thanks

@anandbhaskaran
Copy link

Good work :)

@anand9
Copy link

anand9 commented May 19, 2016

thanks a lot.. ๐Ÿ‘

@timothyleerussell
Copy link

Nice. Very handy. +1

@xD3CODER
Copy link

Nice ! thanks a lot

@AreCoca25
Copy link

Nice! Thanks +1

@ponsakthianand
Copy link

Saved my time... Thank you!

@ztg-zlu
Copy link

ztg-zlu commented May 15, 2020

ๆญฃๆ˜ฏๆˆ‘้œ€่ฆ็š„

@Sasino97
Copy link

Saved a lot of my time, thanks ๐Ÿ˜

@MohammedNuru
Copy link

MohammedNuru commented Jul 26, 2021

Great work man. and simple yet fast solution. Thanks! ๐Ÿ‘

@iamshareque
Copy link

thanks ๐Ÿ‘

@JyteCeo
Copy link

JyteCeo commented Sep 12, 2022

This is nice bro .. thanks

@Daniel-FDS
Copy link

Daniel-FDS commented Nov 6, 2023

This works beautifully... thank you very much, I truly appreciate it. ๐Ÿ™๐Ÿผ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment