Tagged Questions
-1
votes
0answers
63 views
Update data without page refresh [closed]
Hi i am using this code to retrieve users activities for my website
<div id="showhide" class="activitystream">
<ul class="latest-updates">
<?php ...
0
votes
0answers
11 views
page number with ajax
i am using ajax with php to show specific page numbers and link for the pages..i am calling the first ajax on body load and the second ajax from the first ajax function..i am getting the response from ...
2
votes
1answer
34 views
Working of browser 'back button' using jquery ajax and PHP
I am working on an application which involves lot of ajax requests for updating the HTML content.I have a dashboard with a fix left menu or accordian panel which takes the event and based on the ...
2
votes
1answer
8 views
Should _escaped_fragment_ returns a full page contents [ Ajax SEO ]
Iam trying to understad the SEO with ajax ...
What I know is all my ajax links must be (pretty url) something with the format #!anything
So when the robots read my page and finds any of #! urls try to ...
0
votes
1answer
30 views
Simple way of getting a file with ajax?
Is there a way of getting a filename without having to upload information to a database using ajax?
I basically want to click on an html element, trigger a jquery function, and run php code to read a ...
-2
votes
2answers
35 views
How to set php file to only serve for AJAX?
I have a website which uses AJAX Calls in a lot of places,
and all of them call to a single file, called ajax_agent.php
and with GET variables like ajax_agent.php?action=x&arg1=y&etc=true
But ...
0
votes
2answers
21 views
Synchronous request with ajax in a loop
I have a for loop which contains ajax request. The request is working aynchronously. So i can't reach the result of request in time. How can i solve this problem without using any library?
Thanks.
...
0
votes
1answer
26 views
Accessing params sent by an Ajax POST request
I am writing an Ajax request that sends a JSON-formatted string in a POST request. Here is the relevant code:
var params=jsonString;
request.onreadystatechange = functionXyz;
request.open("POST", ...
2
votes
1answer
53 views
no response from AJAX [closed]
I'm going nuts with this issue and have no idea what is wrong.
What i'm trying to do is a simple AJAX call to get URLs of images and thumbnails for current menu from database.
I have a function inside ...
0
votes
0answers
24 views
convert Data String which is send through Ajax into Pure HTML in PHP using phpMailer
I am sending mail through ajax call using php mailer.
Ajax Call:
$(document).on("click","#EmailMe",function(){
$datatable = $("#DivProductContainer").html();
$.ajax({
url: ...
1
vote
2answers
33 views
send multiple data with $.ajax() jquery using selectors as well
is there a way to send data with ajax mixing selector and independent data like this:
$.ajax({
url:"here.php",
data: $("#form :input")+"&"+"id="+id,
type:"POST",
success: ...
0
votes
0answers
24 views
How do I use AJAX and PHP to dynamically introduce different query data based on an inputted date range?
and thank you for viewing this question. I am a PHP/AJAX noobie, and am looking for help on a somewhat unique problem I am facing in creating a dashboard to display refinable query data from a ...
0
votes
0answers
8 views
Converting AJAX-based repetitive web requests to single PHP cron
I currently have a JQuery/AJAX/PHP/MySQL setup that needs to make about 2000 web requests and then process each of the responses with multiple PHP/MySQL functions. Here's the basic run that happens ...
1
vote
1answer
39 views
Jquery AJAX - JSON or TEXT
I'm trying to retrieve the TEXT from the getsku javascript after submitting but not sure how to really do it.
1) How do i retrieve the POST data?
2) How do i retrieve and post it back , if i have ...
0
votes
0answers
18 views
Jquery UI autocomplete with categories
So, i'm using jquery ui autocomplete, and i managed to display what i want with ajax, i also categorized all items with the match category but inside parentheses, what i want is to use the categories ...