in reply to A userscript/userjs to cleanup older releases on PAUSE
use firefox, right click checkbox, inspect element (q), use the info to generate an xpath, say //input[@type="checkbox"] ie $('input[@type="checkbox"]')
Then check http://api.jquery.com/ for "check" and find whoa :) http://api.jquery.com/checkbox-selector/, so
$(':checkbox').click(); clicks all of them
of if you know form name you might use $('form[@name="the name"]').filter(':checkbox').click();
Use themes for Anonymous Monk or try out themes without changing display settings to add jQuery to a page (one click) then click your check-all bookmarklet
and you're setjavascript:(function(){ your code here })()
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: A userscript/userjs to cleanup older releases on PAUSE
by Anonymous Monk on Oct 04, 2012 at 02:53 UTC | |
|
Re^2: A userscript/userjs to cleanup older releases on PAUSE
by sedusedan (Pilgrim) on Oct 04, 2012 at 03:00 UTC | |
by Anonymous Monk on Oct 04, 2012 at 03:04 UTC | |
by Anonymous Monk on Oct 04, 2012 at 05:13 UTC | |
by Anonymous Monk on Oct 04, 2012 at 05:37 UTC |