plz anybody helppppp me
I want to have script to grab information of object and viewed at "status bar"(or other) about all active element properties of object if mouse over it.
example:
object1 = <DIV ID="myDiv1" style="color:#CCCCCC"></DIV>
object2 = <input Type="Text" Name="myText1" Value="textValue1">
object3 = <img src="myImage.gif" width="149" height="173" border="0" alt="myImage">
If cursor on Object1, the status will show like :
ID="myDiv1" style="color:#CCCCCC"
If cursor on Object2 status will :
Name:"myText1" Value:"textValue1"
If cursor on Object3 status will :
Src="myImage.gif" width="149" height="173" border="0" alt="myImage"
the result is can be status or maybe alert, but the only conditional is : each object must not have any javascript statement/function, so i think is like "event listener" (correct me if wrong) and initialize on window.onload
Is that possible to make script for this ??? please help me
I want to have script to grab information of object and viewed at "status bar"(or other) about all active element properties of object if mouse over it.
example:
object1 = <DIV ID="myDiv1" style="color:#CCCCCC"></DIV>
object2 = <input Type="Text" Name="myText1" Value="textValue1">
object3 = <img src="myImage.gif" width="149" height="173" border="0" alt="myImage">
If cursor on Object1, the status will show like :
ID="myDiv1" style="color:#CCCCCC"
If cursor on Object2 status will :
Name:"myText1" Value:"textValue1"
If cursor on Object3 status will :
Src="myImage.gif" width="149" height="173" border="0" alt="myImage"
the result is can be status or maybe alert, but the only conditional is : each object must not have any javascript statement/function, so i think is like "event listener" (correct me if wrong) and initialize on window.onload
Is that possible to make script for this ??? please help me
Comment