Jump to content

Fixing scolling div position


tartou2

Recommended Posts

hello coders,

this issue is driving me to crazy since days, the full code works perfectly but i was able to locate a problem in this jquery part that keep refresh every sec. it works perfectly on pc but on mobile, if the div is scrolled up, everytime i try to scroll down, it keep doing autoscroll to somewhere in between

 

So if anyone can help me on how to make the div return to its position before the refresh

function loadchat(){       
        $.ajax({  
            url: "real_chat.php",  
            cache: false,  
            success: function(html){          
                $("#chatboard").html(html); 
            },  
        });
            return false;  
    }
setInterval (loadchat, 1000);

any help to fix the scrolling on mobile

 

Link to comment
https://forums.phpfreaks.com/topic/284986-fixing-scolling-div-position/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.