“jQuery обновление страницы” Ответ

jQuery обновление страницы

$('#myElement').click(function() {
    location.reload();
});
Grepper

PHP обновление страницы

header("Refresh:0");
A-Décamètre

Как полностью перезагрузить страницу в jQuery

// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);
Jay

Обновление div jquery

$("#mydiv").load(location.href + " #mydiv");

//this is actualy not so nice but it does the job.  
Lonely Lemur

обновить страницу в jQuery

$('#something').click(function() {
    location.reload();
});
Amused Alligator

освежает страницу с jQuery

$(document).ready(function() {
    $("button").click(function() {
        location.reload(true);
    });
});
LazFlex

Ответы похожие на “jQuery обновление страницы”

Вопросы похожие на “jQuery обновление страницы”

Больше похожих ответов на “jQuery обновление страницы” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования