In jquery how do I refer to a div with a certain title attribute?
$('#inner').attr("title:contains('" + position +"')").css('position', 'absolute');
this isnt working for me, If contains doesnt work in there how do I refer to a div with the title="div1" and change its css . Thanks again!
EDIT: I have multiple #inner divs, how can I go about referring to a specific one, if title will not work? There must be some way to give these #inner divs some sort of identification so I can call them individually.