So you have a bunch of elements and you select with jQuery just one of those.
($('div > ul > li').length === 1) // this is true
Now if you need to pass on this element as a string you would normally:
var el = $('div > ul > lu');
var passid = el.prop('id');
// in case this element doesn't have an id="..." attribute set one
if(typeof(passid)!=='string'){
// compute an id="..." attribute based on the time
var elindex = new Date().getTime();
// make sure the id we're using isn't already in use by a different element
while($('#el_'+elindex).length)
elindex++;
// assign what we've got
passid = 'el_'+ elindex ;
el.prop('id', passid);
};
passid = '#'+passid;
// Once we're good to go, pass the resulting selector
// passon(passid);... etc.
Does jQuery come with a better (built-in) function (or even plugin really) to facilitate me to pass a reference to a DOM node as string?