Reputation: 237
I have a variable itemid (which is the id of an element) which I want to hide, but firefox tells me this code is illegal:
$(#(itemid)).hide();
Is what I am trying not possible or am I just tring it the wrong way? Also, in terms of debugging, is it possible to use javascript variable in alert boxes?
Thanks
Upvotes: 0
Views: 411
Reputation: 222
Your selector syntax is incorrect. Try:
$("#" + itemid).hide();
EDIT
Fixed stupid mistake.
And to answer the second part of your question, yes it is.
var someVar = "hello world";
alert(someVar); // displays an alert box with the variable
Upvotes: 0