Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't know why, but this code makes IE9 and Safari crash, and does not work at all in Opera.

$('#contentPage').on('DOMSubtreeModified', function(){
    if($(".iframey[date-current]").length){
    $(".iframey:not(.hidden)").prevUntil("iframe").addClass('smaller');
}});

What should I do to make this code work in all browsers?

---edit---

The code in jsfiddle

http://jsfiddle.net/rzP5S/

Working grate in chrome and firefox

share|improve this question
What does "crash" mean? The whole browser closes/hangs, or the code just doesn't do anything, or...? – nnnnnn Aug 26 '12 at 3:51
Have you tried putting a semicolon ; at the end of everything (so it finishes with }});? That's how it should technically be – DuncanNZ Aug 26 '12 at 3:52
So... it basically doesn't work in any browser? (-FF) – Charlie Aug 26 '12 at 3:52
@nnnnnn the browser freezing and have to close it Through task manager – Jimmy Todd Aug 26 '12 at 3:53
You'd better debug your code, like using firebug for FF or Chrome's inspector. They should tell you what the problems are in your js code. – woodykiddy Aug 26 '12 at 3:53
show 8 more comments

2 Answers

up vote 0 down vote accepted

What @Musa is saying is correct. There is an infinite loop. Is there any reason why you need to handle it in DOMSubtreeModified? Can't you just do the work within the click event instead? This seems to behave the same:

$(".onePost").live("click", function() {

    $(".onePost").removeClass('smaller');

    $("iframe")
        .addClass('hidden')
        .removeAttr('src')
        .removeAttr('date-current');

    $(this).nextAll("iframe:eq(0)")
        .removeClass('hidden')
        .removeAttr('style')
        .attr({src: $(this).data('href')})
        .attr('date-current', 'here');

    if($(".iframey[date-current]").length){
        $(".iframey:not(.hidden)").prevUntil(".iframey").addClass('smaller');
    }
});

http://jsfiddle.net/rPPSj/

share|improve this answer

You are modifying the dom in a dom modified event handler, you should check if the modification was due to your code in the handler to prevent an endless loop.

Also

Warning! the DOMSubtreeModified event type is defined in this specification for reference and completeness, but this specification deprecates the use of this event type.

http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMSubtreeModified

share|improve this answer
This is the full code jsfiddle.net/rzP5S – Jimmy Todd Aug 26 '12 at 5:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.