|
|
function for document.getElementById() - Javascript
|
Views : 426
|
|
Tagged in : Javascript
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
function for document.getElementById():
Always try to shorten your coding, so that you will be able to understand it in future.
Use a function for document.getElementById(), so that it will avoid you each and everytime typing the line "document.getElementById('something').innerHTML/style/value/something else...."
For Eg,
function d(s){
return document.getElementById(s);
}
Just call the function as,
d('test').style.border="1px solid green";
Thus this way of coding shortens your line of code....... |
|
By Ramya, On - 2010-02-05 |
|
|
|