2012/07/03

#23. Clear a complete list in your gamespot profile


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:
var list = document.getElementsByTagName("select");
for(i=0; i < list.length; i++) { list[i].value = "delete"; }
view raw gistfile1.js hosted with ❤ by GitHub

If you need help on how to execute it, please leave a comment! Thx

No comments:

Post a Comment