doesn't work in IE7 on links loaded via ajax
May 5, 2008 - 3:47am — GenericRage
| Project: | History |
| Version: | 1.0.0-beta-1 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
For demonstration, see: http://www.genericrage.com/history/index.html
The linked demonstration is a small modification to the developer-provided demonstration so that the load links are added to the page via ajax instead of pre-existing on the page. The links still work as expected in FF2 but do not work in IE7.

Comments
#1
Has any headway been made on this request? I'm running into the very same issue with my application, and is a critical issue with the way it has been designed. Any support/updates would be very much appreciated. Thanks in advance!
#2
I just check the same issue in Safari 2.0, and it exists as well. Apparently FF is the only one that works correctly.
#3
I figured out the issue with this one, and it is not the history plugin's problem. When content is loaded dynamically into the DOM, the DOM needs updating in order to interact with the new content. I solved the problem with the jQuery Listen plugin. Everything works great now.
#4
could you share this data with the rest of us, as I am having similar problems, but am having trouble getting ym head round the jquery.listen plugin...
#5
Hi I've changed the line code
$("a[@rel='history']").click(function(){
by
$j('body').intercept('click', "a[@rel='history']", function(e){
it works perfectly in Firefox i still have the problem using IE7 could you share with us your solution that works in IE7.
thank you very much!