Advertisement
Guest User

Untitled

a guest
Jun 17th, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name superfish
  3. // @namespace whatever
  4. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
  5. // @include https://www.mturkcontent.com/dynamic*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. $('img').each(function(){
  11. $(this).click(function(){
  12. if ($(this).next().next().attr('checked'))
  13. $(this).next().next().attr('checked',false);
  14. else
  15. $(this).next().next().attr('checked',true);
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement