<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
</head>
<script type="text/javascript">
//IT WORK
alert($('<x><r/><b><c id="1""/></b></x>').find('c').attr('id'))
alert($('<x><r/><u><c id="1""/></u></x>').find('c').attr('id'))
//IT DOESNT WORK
alert($('<x><r/><m><c id="1""/></m></x>').find('c').attr('id'))
</script>
<body>
</body>
</html> |