Hello, I am using jquery to assign click event on a list of anchors by the following codes: ----html---- <a href="#" class="myLink">some text</a> ----js---- $('a.myLink').click(function(){ alert(this.text); } I can display "some text" on firefox and chrome but not IE(at least doesn't work on ie 8). Can someone tell me how to read text for ie? Thank you.