Click to change span text
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("span").click(function () { $("span").text("changed"); }); }); </script> </head> <body> <body> <div> <div><span>Hello</span></div> </div> </body> </html>