Recent questions tagged ajax

Description : How ajax event that occurs every one second affect the web page performance?

Last Answer : That’s what the ask-public chat does.

Description : What is the difference between a modal and a popup?

Last Answer : A modal window requires the user to complete interation with it before allowing access back to the parent window. A plain old pop up window can just be a separate browser window that the user can ignore until later. I’ve seen popup blockers block both kinds.

Description : What is the difference between javascript and AJAX?

Last Answer : Javascript is a client-side language that runs in the browser. AJAX Is javascript that for the most part uses the XMLHTTPREQUEST object to grab snippets from a server. For example.. I have a website. I want ... . The user never has to reload the page. It is all real-time. This site is AJAX heavy.

Description : How do you have Ajax requests fade in with jQuery?

Last Answer : I’m not entirely sure how you would do this in jQuery since I use Prototype, but my usual method is: 1) Load the content into a hidden container 2) onSuccess, fade in the hidden container housing the content I’m sure there’s a similar method in jQuery.

Description : Ajax beginner,need help!

Last Answer : Your page is ajax.html ... It isn't being run through the PHP interpreter. Rename it ajax.php and see what happens. This is assuming you are running a script on a PHP enabled server in ... 't work: file:///Applications/MAMP/htdocs/login/index.php This will: http://localhost:8888/login/index.php

Description : Ajax.PeriodicalUpdater update every second and work real time?

Last Answer : Sounds like you want a TimedObserver instead.

Description : ajax or dom image resizing

Last Answer : answer:Can’t you just set width: 400px; in CSS? (Of course, replacing 400px with your desired width)

Description : Ajax.PeriodicalUpdater — only update if the content has changed?

Last Answer : It’s been a while since I’ve written in Prototype, but what if you bound your own method for the onSuccess for the PeriodicalUpdater (instead of using the helper methods for updating the DOM); you could check for data coming back, and if there were data, then call update yourself.

Description : Ajax refresh in, guess what, IE.

Last Answer : answer:Are you using the XMLHttpRequest directly on purpose? I don't see anything wrong with your JavaScript in terms of the actual requests. However, you are declaring your response, responseold and ... t really test much more because you've got your numpa.js include commented out right now.

Description : I'm building an Ajax-based website, where do I start?

Last Answer : This is where I started when I learned AJAX.

To see more, click for the full list of questions or popular tags.