I need some text to move to the right when the mouse hovers over it, here's what I have so far JS:
$("#mainnav li").hover(function() {
$(this).css('padding-left', '50px');});
HTML:
<ul id="mainnav">
<li>hello</li>
<li>hello 1</li>
<li>hello 2</li>
</ul>