Сообщение от devote
			 
		
	 | 
	
		
$(function() {
    $('.class1').click(function(e) {
*!*
        e = e || window.event;
*/!*
        if ( *!*e.target*/!*.tagName.toLowerCase() === "a" ) {
            $.ajax({
                url: "htmls/class1/"+*!*e.target*/!*.className+".html",
                cache: false,
                success: function(html) {
                    $("#test").html(html);
                }
            });
*!*
            if ( e.preventDefault ) {
                e.preventDefault();
*/!*
            } else {
                e.returnValue = false;
            }
        }
    });
});
	 | 
	
ooh, ох уж эта jquery. там уже 
e == window.event, а 
e.target == this. 
preventDefault там тоже есть 
jq event
не любите вы её использовать 
