With this you will get all combo boxes changed to delete, you can also use it to change to another value, the you only have to click the Save Changes button.
Use this piece of javascript code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var list = document.getElementsByTagName("select"); | |
for(i=0; i < list.length; i++) { list[i].value = "delete"; } |
If you need help on how to execute it, please leave a comment! Thx
No comments:
Post a Comment