I detected and error in Internet Explorer 8. The error comes from javascript.

    // Creating title link.
    form.parents(".box").find("h2:not(.ajax-comments-processed),h3:not(.ajax-comments-processed),h4:not(.ajax-comments-processed)").addClass('ajax-comments-processed').each(function(){
      title = $(this).html(); <-- Error on this line
      $(this).html('<a href="'+action+'" id="comment-form-title">'+title+'</a>');
      $(this).parents(".box").find(".content").attr('id','comment-form-content').removeClass("content");
    });

I don't know what happen but IE keep appear error at this line.

Comments

dbluu’s picture

I have this issue as well. Explicitly declaring the title variable's scope seems to fix it:

var title = $(this).html();

It's good practice to do this for all Javascript variables to avoid implied global variables.

rjbrown99’s picture

Version: 6.x-1.8 » 6.x-1.x-dev
Assigned: Unassigned » rjbrown99
rjbrown99’s picture

Status: Active » Fixed

Committed to -dev. Thank you.
http://drupal.org/cvs?commit=438592

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.