Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/html/scripts/sb_display.php on line 404
Martins dies und das - blog.martin-enders.de
Convert HTML input elements to text with Firefox and Firebug 
Tuesday, July 20, 2010, 08:53 AM - HTML, JavaScript
I wrote this small script to convert all buttons in a HTML-table into text.

var inputs = $$("input");
console.log("Before: " + inputs.length)

for(i = 0; i<inputs.length; i++)
{
    try{
        if(inputs.getAttribute("type") == "hidden"){
            inputs.parentNode.removeChild(inputs);
        }
    }catch(e){
        console.log(e);
    }       
}

inputs = $$("input");
console.log("Afterwards: " + inputs.length)


for(i = 0; i<inputs.length; i++)
{
    try{
        inputs.parentNode.innerHTML = inputs.getAttribute("value");
    }
    catch(e){
        console.log(e);
    }
}




http://getfirebug.com/
http://getfirefox.com

EDIT:
I made two mistakes within the markup the '<' was interpreted as an beginning HTML-tag, so it messed up the Javascript Code.
  |  permalink