jquery selector

Posted by Sotos on Stack Overflow See other posts from Stack Overflow or by Sotos
Published on 2010-05-29T07:45:25Z Indexed on 2010/05/29 7:52 UTC
Read the original article Hit count: 224

Filed under:

hello, i have the below sample code for a navigation list:

<div id="menu">
 <ul>
  <li><a href="#sect1">link 1</a></li>
  <li><a href="#sect2">link 2</a></li>
  <li><a href="#sect3">link 3</a></li>
 </ul>
</div>

and some jquery code:
$("#menu li").click(function () {
  var mylicontent=$(this).html();
});

i want to get both html content of the li object and the href value. Any ideas?

© Stack Overflow or respective owner

Related posts about jquery-selectors