I recall seeing a post in the past couple of months where someone had a solution to check all the boxes when restoring a deleted item. Unfortunately, I can't for the life of me figure out what I did with that message. Would anyone happen to have it laying around?
Thanks! Jareth (http://en.wikipedia.org/wiki/User_talk:Jareth)
On a related note, I'm no code monkey, but I'd think it would be pretty easy to add a "check all" button. Or is that idea just on a backlog of suggestions?
On 1/4/06, Michelle Kinney jareth@crimsonblade.net wrote:
I recall seeing a post in the past couple of months where someone had a solution to check all the boxes when restoring a deleted item. Unfortunately, I can't for the life of me figure out what I did with that message. Would anyone happen to have it laying around?
Thanks! Jareth (http://en.wikipedia.org/wiki/User_talk:Jareth) _______________________________________________ WikiEN-l mailing list WikiEN-l@Wikipedia.org To unsubscribe from this mailing list, visit: http://mail.wikipedia.org/mailman/listinfo/wikien-l
On 1/4/06, Michelle Kinney jareth@crimsonblade.net wrote:
I recall seeing a post in the past couple of months where someone had a solution to check all the boxes when restoring a deleted item. Unfortunately, I can't for the life of me figure out what I did with that message. Would anyone happen to have it laying around?
The following bookmarklet, created by Brian0918, will do this:
javascript:for (i=0; i<document.forms.length; i++) { for (j=0; j<document.forms[i].elements.length; j++) { f= document.forms[i].elements[j]; if (f.type == 'checkbox') f.checked= true; } } void 0
Angela.