Skip to content

Instantly share code, notes, and snippets.

@filipgorczynski
Created November 26, 2014 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filipgorczynski/5de1f5aa0dbd7dc136d4 to your computer and use it in GitHub Desktop.
Save filipgorczynski/5de1f5aa0dbd7dc136d4 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function () {
(function () {
jQuery('.customized-select').each(function () {
var wrapElement = jQuery('<span class="select-customized-container processed" />');
jQuery(this).wrap(wrapElement).wrap(jQuery('<span class="select-customized processed">'));
});
})();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment