jquery - loose click() event after ajax call ???

Posted by niczoom on Stack Overflow See other posts from Stack Overflow or by niczoom
Published on 2010-06-07T03:07:33Z Indexed on 2010/06/07 3:12 UTC
Read the original article Hit count: 301

Filed under:
|
|

At the following webpage liamharding.com/pgi.php I have an option panel on the left side of the page which opens and close's upon clicking the panels 'arrow', this works fine until you select a market (for testing use one of the 'Random Walk' markets and click 'Show/Refesh Graphs'), this then makes an ajax call using get_graph(forexName, myCount, divIsNew) function.

Once this call is completed a graph(s) is displayed and then my options panels click() event does not work?

The ajax call returns the data in a variable ajax_data, the problem happens when I perform the following code var jq_ajax_data = $("<div/>").html(ajax_data); . I need to wrap it in a so I can extract data from it using jQuery. If this line of code is commented out the click() event works fine ??

Hope somebody can help, I have spent a lot of time but cant find what the problem is.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about AJAX