1
vote
3answers
50 views
Are these JQuery calls the same?
Hi guys,
Could someone tell me if this:
$.ajax({
url: 'test.html',
success: function(data) {
alert("Data Loaded: " + data);
}
});
is …
0
votes
3answers
41 views
window.onload equivalent for Ajax applications?
I'm using window.onload to call my JavaScript code that has to be executed after the page is fully loaded. From what I read this is the recommended method to call such scripts.
Ho …
0
votes
4answers
28 views
AJAX script not working in Firefox
I have written an AJAX script to read information from a database and inject it into a .php file as HTML. It works in IE8, Safari, Chrome but not Firefox. No errors displayed or an …
0
votes
3answers
46 views
open external url in div
i want to load contents of external url like (http://www.google.com) into div,
i the way which will readable by search engine crawl.
in any one of (jquery / ajax / php )
Thanks …
0
votes
2answers
39 views
Ajax content in a loop
I'm trying to load some ajax content into a table, unfortunately it's only loading the last row multiple times instead of loading each new rows.
This is the code I'm using:
funct …
4
votes
3answers
41 views
REST/Ajax deep linking compatibility - Anchor tags vs query string
So I'm working on a web app, and I want to filter search results.
A nice restful implementation might look like this:
1. mysite.com/clothes/men/hats+scarfs
But lets say we want …
1
vote
5answers
49 views
How to create a xmlhttp request?
var url="display.php?vote="+grade;
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
}
function stateChanged()
{
if (xmlHttp.readyState …
0
votes
3answers
32 views
Select content from JQuery ajax return object
As I understand it, the JQuery load() function retrieves a document and can perform the quivelent of:
$('#somecontenttograb').html()
upon it. I would like to know how to do tha …
0
votes
3answers
40 views
How to send js array via ajax?
I can only send string or numeric values,how to send an array?
0
votes
1answer
15 views
easy way to show image next to textbox?
Hi, I trying to validate a form using ajax...I have got it to show either a cross or tick if the box passes valdation. This is done by showing or hiding a div tag, is there an easi …
0
votes
3answers
21 views
Chat Application in ASP.NET
I've to write an Ajax chat web application in ASP.NET for a friend, and I've a question: if client1 sends a message to client2, how should the application send the message to clien …
0
votes
1answer
37 views
Update Database record using jQuery/PHP and a link and not a button
I am attempting to make a registration-like page for a small forum. To register for an event, I simply want the users to click a 'link'. (It doesn't have to be a link, but I don't …
1
vote
1answer
56 views
How can I use JSON and Perl (HTML::Mason) to create dynamic web page with AJAX?
Hi everyone,
I'm some kind of lost with the way i have to deal with Javascript, JSON and Perl and most of the examples are in PHP which is not helpfull for me.
I have a page (cal …
1
vote
3answers
65 views
How to update some part of the webpage?
I would like to update (change the content) some part of the webpage without updating the whole page (without refreshing the page). Of course first thing you would write as an answ …
0
votes
1answer
37 views
jquery ajax with memcache and php objects
Hi
hope I'll be able to explain my needs clearly... :) .
I have a HTML document generated by a PHP script that contains some objects stored in memcache.
The PHP script uses thes …
