Guest User

Untitled

a guest
Feb 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function imageReplace(selector) {
  2. $(selector).each(function() {
  3. string = $(this).text();
  4. filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
  5. $(this).html('');
  6. });
  7. }
Add Comment
Please, Sign In to add comment