Answers for "jquery reload element"

19

jquery reload page

$('#myElement').click(function() {
    location.reload();
});
Posted by: Guest on July-22-2019
1

how to completely reload page in jquery

// reload page from cache:
location.reload();
// reload page from server:
location.reload(true);
Posted by: Guest on September-15-2020
2

refresh div jquery

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

//this is actualy not so nice but it does the job.
Posted by: Guest on March-24-2020
1

refresh a page in jquery

$('#something').click(function() {
    location.reload();
});
Posted by: Guest on February-24-2020
0

AJAX in reload a div container

(function($)
{
    $(document).ready(function()
    {
        $.ajaxSetup(
        {
            cache: false,
            beforeSend: function() {
                $('#content').hide();
                $('#loading').show();
            },
            complete: function() {
                $('#loading').hide();
                $('#content').show();
            },
            success: function() {
                $('#loading').hide();
                $('#content').show();
            }
        });
        var $container = $("#content");
        $container.load("rss-feed-data.php");
        var refreshId = setInterval(function()
        {
            $container.load('rss-feed-data.php');
        }, 9000);
    });
})(jQuery);
Posted by: Guest on April-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language