Guest User

Untitled

a guest
Feb 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $(document).ready(function() {
  2. if($('#logo')[0].offsetWidth == 288) {
  3. $('h2.img').each(function() {
  4. string = $(this).text();
  5. filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
  6. $(this).html('<img src="/images/' + filename + '.gif" alt="' + string + '" />');
  7. });
  8. }
  9. });
Add Comment
Please, Sign In to add comment