Linked Questions
11 questions linked to/from Auto-refreshing div with jQuery - setTimeout or another method?
0 votes
1 answer
149 views
Auto refresh a div HTML/jQuery [duplicate]
I try to get a div refreshed with jQuery. <div class="col-lg-8" id="btc"> Send <?php echo $bitcoin_price; ?></div> <script> $(document).ready(function () { var ...
5 votes
3 answers
39k views
Refresh only a div in php [closed]
I have a chat box that i want to update :-) But I want only to refresh the div and not the hole page... Can someone help me?? Code: <div align="right" id="chat"> <?php include 'Chat.php'; ...
7 votes
2 answers
16k views
Django, update part of the page
I'm trying to implement a simple code testing server. The client will submit their code on the webpage and we will run it with two test cases (which could take several minutes) and we'll post the ...
1 vote
5 answers
7k views
Auto refresh multiple divs with Jquery
Im creating a dashboard for a large display at work, I have managed to get one div auto refreshing a php request page, but I can't think of a way of using this function on another div for another ...
13 votes
2 answers
10k views
Auto refresh <div> without reload entire page
I'm trying to update the content of "mydiv" without refreshing the entire index page. @mydata is given by mycontroller. I need to recalculate it every n seconds and pass it to "mydiv" With "link_to" ...
0 votes
3 answers
8k views
How can I auto-update a news feed with javascript without refreshing the whole page?
How can I automatically update just the news feed of my site without updating the whole of it every 10 seconds?? I am creating a php code that pull information from an rss feed but I don't want the ...
0 votes
1 answer
2k views
i have many div in my aspx page. how to update the content of a particular div?
I have many div in my aspx page. how to update the content of a particular div? It should update every one minute time interval.. with out reloading entire page..
2 votes
1 answer
1k views
PHP session expires before the browser is closed
I am using PHP to create a website and I use session for some parts such as keeping user logged in, etc. I set the session timeout to zero, so it expires when the browser is closed. My problem is that ...
0 votes
2 answers
746 views
Stop JQuery refreshing DIV
Hi I've been using the suggestion made in Auto-refreshing div with jQuery - setTimeout or another method? to refresh a div. The div is refreshing a php script that is calculating lots of numbers in ...
1 vote
1 answer
1k views
Refresh the contents of a tabbed panel in Struts2
All, I have a question regarding Tabbed Panel in Struts2. If I have a few panels and I want the content on a tab to be updated every five seconds would how would I do this? Also, I only want the ...
0 votes
1 answer
40 views
Autopopulate View when user is null
I'm willing to make the following ( C# MVC 3.0): -Update a View when the user presses a button. - Such button has an authentication form. -If the user and pass he entered in the form is ok , the ...