I am having a problem with a jquery on IE6 and I don't know how to check were the problem is. IETester does not seem to have this feature. Is there anything else for testing?
OK I am showing some code that it is supposed to delete staff. This Does Not work in IE6:
$(".delete").click(function() {
$(this).next('.loading').fadeIn();
var commentContainer = $(this).parent();
var id = $(this).attr("id");
var string = 'solutionID='+ id;
$.ajax({
type: "POST",
url: "/js/ajax/delete-comment.php",
data: string,
cache: false,
success: function(){
commentContainer.slideUp('slow', function() {$(this).remove();});
$('.loading').fadeOut();
}
});
return false;
});