Get DIV parent count
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("span").click(function () { var len = $("span").parents("div").length; alert(len); }); }); </script> </head> <body> <body> <div> <div><span>Hello</span></div> </div> </body> </html>