jQuery selectors are wonderful, but I sometimes I find myself typing them over and over, and it gets a little annoying.
$('#mybutton').click(function() {
$('#message-box').doSomething();
$('#message-box').doSomethingElse();
$('#message-box').attr('something', 'something');
});
So often I like to cache my objects in variables:
$('#mybutton').click(function() {
var msg = $('#message-box');
msg.doSomething();
msg.doSomethingElse();
// you get the idea
});
Are there any pros or cons between these two patterns? Sometimes it feels like creating the variables is extra work, but sometimes it saves my fingers a lot of typing. Are there any memory concerns to be aware of? Do selectors clean up nicely after being used, whereas my bad coding habits tends to keep the vars in memory longer?
This doesn't keep me up at night, but I am curious. Thanks.
EDIT: Please see this question. It essentially asks the same thing, but I like the answer better.