Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name GSY Img
- // @namespace http://www.gamersyde.com/
- // @version 0.2
- // @description masque les images dans le forum GSY
- // @match http://www.gamersyde.com/forum*
- // @copyright 2014, Miguel
- // ==/UserScript==
- var imgs = $('table.tableforum tr.tabRow1 td.tabCol2 img');
- imgs.each(function(i, e) {
- var img = $(e);
- img.attr('data-src', img.attr('src'));
- img.attr('alt', 'Click to view');
- img.attr('title', 'Click to view');
- img.attr('src', 'images/stop.gif');
- img.attr('width', '50');
- img.bind('click', function(event) {
- var that = $(this);
- that.attr('src', that.attr('data-src'));
- that.removeAttr('width');
- that.unbind('click');
- return false;
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement