narfy892
Aug 27th 2008, 1:02 am
I want the value of this :
document.getElementById('clearthisok').value;
to be referred to a function knowing that I don’t know its value.
Ex:
<script>
document.getElementById('clearthisok').value="xxx01();";
//syntax that open the function xxx01()//
function xxx01()
{
Alert("it’s working")
}
</script>
document.getElementById('clearthisok').value;
to be referred to a function knowing that I don’t know its value.
Ex:
<script>
document.getElementById('clearthisok').value="xxx01();";
//syntax that open the function xxx01()//
function xxx01()
{
Alert("it’s working")
}
</script>