[jQuery] Re: click Event not working on first binded element on IE after one click

2009-02-02 Thread shahku...@gmail.com
u using a > querystring? > > $('.hint').click(function(){ >      var clickText = $(this).text(); >      $.post('term.cfc', {method: 'getTermDef', returnFormat: 'json', > term:clickText}, showHint, "json"); > > }); > > Have you

[jQuery] click Event not working on first binded element on IE after one click

2009-02-01 Thread shahku...@gmail.com
So, I am implementing a page on which words that have hints associated in the DB are binded with the click event to show the Hint. Initially, I go through and replace the words with html that goes word So, then I bind the hint class with the click event, $(".hint").bind("mouseup",function(e) {