I have the following html:
<ul><li rel="3">text<li><li rel="2">text<li><li rel="1">text<li></ul>
then I prepend a new li element:
$("ul li:first").prepend('<li rel="4">text</li>');
Problem:
when I get the value of the attribute(rel) of the newly added element like this:
alert( $('ul li:first').attr('rel') );
..I keep getting "3" instead of 4...but I need the new one!
Hope somebody can help me!
TIA