Does anyone know of a Firefox extension or Linux app that allows you to check or uncheck all checkboxes on a web page?
-
Firefox (un)check all extension: Does anyone know if there exists a firefox extension or linux app that allows you to check or uncheck all checkboxes on a given web page? {mi} I use a ticket tracker system with lots of legitimate tickets and lots of spam (I have no control over filtering for this system). Sometimes I pull up a page that has, say, 50 legitimate tickets and 25 pieces of spam, necessitating 50 mouse clicks to clean out the spam and retain the tickets, and it would be nice to be able to come out ahead of the ratio every now and then. : > In the event that such a thing does not exist, I have intermediate-level Perl experience . . . would this translate well to trying to do this in Python (something I probably need to learn, anyway) as a learner project?
-
Answer:
Hey, here's a http://www.squarefree.com/bookmarklets/forms.html#toggle_checkboxes bookmarklet [link goes to page, not directly to bookmarklet].
littlegreenlights at Ask.Metafilter.Com Visit the source
Other answers
Easiest way to do this would probably be as a bookmarklet in javascript. Some sloppy top-of-my-head probably nonfunctional code that should point you in the right direction at least: var cboxes = document.getElementsByTagName('input'); for (var i=0; i < document.cboxes.length; i++) { var cbox = document.cboxes[i]; if (cbox.type =='checkbox') {cbox.checked=true} }
ook
You guys rock so hard. :> Thanks for making a n00b hostmaster's days a whole lot less clicky-stressful. I don't know why, but the ticket tracking system defaults to checking everything on an update page by default, meaning, yes, please delete this ticket, My aim was getting better after a few thousand, but that isn't a skill I thought was particularly lacking, anyway. :> Thank you, thank you!
littlegreenlights
Related Q & A:
- Does anyone know of a good car insurance company with reasonable prices?Best solution by thetoptens.com
- Does anyone know of a legit home business?Best solution by Yahoo! Answers
- In the simplest clearest language possible, can any one tell me step by step how to get a web page or domain?Best solution by Yahoo! Answers
- I need a nice, comfortable, and spacious backpack . Anyone know of a good one.Best solution by answers.yahoo.com
- How do I set up a web page?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.