AJAX is a set of techniques that run on the client to create interactive websites. It allows updates to the current page to be made in more or less real-time without having to reload the page from the server. AJAX on Wikipedia
1
vote
0answers
22 views
AJAX user interface for wireless networks / Event-based flowcharts
I'm designing an AJAX interface which allows a user to remotely connect a device to a wireless network.
The user is on a page with a list of wireless networks, and clicks the "Connect" or ...
0
votes
1answer
118 views
Form Validation using AJAX with PHP fallback
I've used this PHP/AJAX method of validation for a bit, but I think it could use a little peer review. The basic idea was to create a way of verifying forms in a nice manor using AJAX, but also ...
1
vote
2answers
71 views
Better way to Rewrite?
The output result is perfect to what I wanted, but takes a tad bit too long to pull data then render into a graph. Is there a better way to rewrite this code to speed up the process? I'm all ears ...
0
votes
0answers
33 views
Better way to handle the ajax history problem than my solution? [closed]
I have implemented javascript code to solve ajax history problem
Everything is working fine there no problem in it but I want to improve this code
As an example
When user see page (URL : ...
1
vote
0answers
41 views
Is there any way to shorten up this Facebook API call?
Right now I am working on an AJAX call that grabs a random photo that a Facebook user is tagged in and then grabs the large source for it. Is there any way to speed this up or at least distill the ...
1
vote
1answer
65 views
JSON array href as a variable in jQuery
I have a getJSON function that converts the results to an html template to display as a list that contains a different hyperlink within each list item. I need to override the normal html function of ...
2
votes
1answer
83 views
AJAX alternative of using jQuery form ui
Hi everyone I was using the jQuery form plugin to process form submission (found at http://malsup.github.com/jquery.form.js) on my page but now have to switch to using an purely jQuery AJAX based ...
2
votes
2answers
111 views
Generalized Ajax function
Not sure if this question will be considered "off topic". If it is, I'll remove it, but:
I hadn't see this yet so I wrote it and would like to know if this is a good approach to it. Would anyone care ...
3
votes
1answer
70 views
Simple XmlHttpRequest object
I would like some eyes on this:
/* Little XHR
* by: rlemon http://github.com/rlemon/
* see README for useage.
* */
var xhr = {
xmlhttp: (function() {
var xmlhttp;
try {
...
0
votes
0answers
181 views
JSF and Ajax : is it the good approach?
I'm new with AJAX. I try to learn by myself with a small test:
It's a survey with 3 questions
I would like to know if I'm using AJAX the correct way before starting bigger projects.
Thanks for your ...
0
votes
1answer
58 views
PHP Action Verification
I am creating a site that is very heavily relying on ajax. To stop major spamming on my site, I decided to implement a php system that checks how many actions have been made in the last 5 minutes. I ...
2
votes
2answers
75 views
Fetching data via jquery and adding items to a list
Super-duper javascript noob here. I'm trying to fetch public repos from GitHub, and add them to a dl. I know this won't work on every website due to cross-site scripting, but GitHub offers a JSON-P ...
0
votes
1answer
62 views
PSEUDO Query (jQuery extension)
I just invented PSEUDO Query!
var objects = $.pquery([
'##pquery##', // Initialize as PSEUDO Query Object
[document.body, 'css', [{'background-color':'#f00'}], 'append',
...
2
votes
1answer
73 views
AJAX call in JavaScript
I know there is a lot of libraries with this built in $.get() etc... but as for writing this in pure JavaScript how does this look?
var get_request;
ajaxRequest(function() {
var activexmodes, i, ...
2
votes
0answers
80 views
JavaScript/PHP file uploader
I'm writing a JavaScript/PHP file uploader and I want to start this project off on the right track. I've started with this, a JavaScript Uploader object which will handle Ajax calls, display progress, ...