Показать сообщение отдельно
  #22 (permalink)  
Старый 07.09.2011, 08:43
sinistral
Посмотреть профиль Найти все сообщения от melky
 
Регистрация: 28.03.2011
Сообщений: 5,418

Сообщение от 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

не любите вы её использовать
Ответить с цитированием