var $name = ('div#amuchlongername');
$('#wrapper').prepend('<div id="$name"></div>');
Obviously I know this code is wrong lol, but I’m fairly knew to jQuery and I can’t seem to find anything about this.
How would one go about achieving a variable name inside a div id?
You would go about it in the same way as normal JavaScript (since it’s just a string passed to jQuery).
nameis just a normal JavaScript variable and can be anything. The$is an alias forjQuery. When you do$('#wrapper')you are calling jQuery to access the element with the Id ofwrapper.I’ve made a jsFiddle to show it working: http://jsfiddle.net/Xs45x/1/ I’ve just updated it to put the variable inside the div too, so you can see what it’s doing.