Is there any shorthand for the JavaScript document.getElementById? Or is there any way I can define one? It gets repetitive retyping that over and over.
Here I used
|
|||||||||||||||||||||
|
|
To save an extra character one could pollute the String prototype like this:
It even works in some browsers (like Firefox and Chromium) and you can access elements this way:
I have chosen the name of the property almost randomly. |
|||||||||||||||||||||
|
|
A quick alternative to contribute:
Then just do:
There's a catch, it doesn't work in browsers that don't let you extend prototypes (e.g. IE6). |
|||||||||||||||||||
|
|
You can easily create shorthand easily yourself:
|
|||||||||||||
|
|
(Shorthand for not only getting element by ID, but also getting element by class :P) I use something like
Usage : |
|||||
|
|
|||||
|
|
There are several good answers here and several are dancing around jQuery-like syntax, but not one mentions actually using jQuery. If you're not against trying it, check out jQuery. It let's you select elements super easy like this..
|
|||||||||||||||
|
|
There's none built-in. If you don't mind polluting the global namespace, why not:
EDIT - I changed the function name to be something unusual, but short and not otherwise clashing with jQuery or anything else that uses a bare |
||||
|
|
|
If this is on your own site, consider using a library like jQuery to give you this and many other useful shorthands that also abstract away browser differences. Personally, if I wrote enough code to be bothered by the longhand, I would include jQuery. In jQuery, the syntax would be Or, if you're using this in a browser developer console, research their built-in utilities. As someone else mentioned, the Chrome JavaScript console includes a |
|||
|
|
|
If the only issue here is typing, maybe you should just get yourself a JavaScript editor with intellisense. If the purpose is to get shorter code, then you could consider a JavaScript library like jQuery, or you can just write your own shorthand functions, like:
I used to do the above for better performance. What I learnt last year is that with compression techniques the server does it automatically for you, so my shortening technique was actually making my code heavier. Now I am just happy with typing the whole document.getElementById. |
|||
|
|
|
Yes, it gets repetitive to use the same function over and over each time with a different argument:
So a nice thing would be a function that takes all those arguments at the same time:
Then you would have references to all your elements stored in one object:
But you would still have to list all those ids. You could simplify it even more if you want all elements with ids:
But it would be pretty expensive to call this function if you have many elements. So, theoretically, if you would use the
But I don't want to promote the use of |
||||
|
|
|
Well, if the id of the element does not compete with any properties of the global object, you don't have to use any function.
edit: But you don't want to make use of this 'feature'. |
|||||||||||
|
|
I like short code, but I don't like to read code that looks like Scrooge McDuck's pajamas.
|
|||
|
|
document.getElementById()? – Alnitak Jun 19 '11 at 8:28