0
votes
1answer
22 views
How to use external java script file in facebook application development
hi
how can i use the external java script in facebook application development actually i want to use the Ajax tab feature in my application
Thanks
0
votes
2answers
22 views
Issue with showing a progress bar using overlay
Requirement : I have a piece of code similar to the code below. I want to show a progress bar in an overlay after the save button is clicked. Once I get the response from the ajax call, I show an …
0
votes
3answers
29 views
go back to last state ajax pages?
i've got a website that shows search results with ajax. but of course when i click on a thread in the results and then go back with the web browser back button the results are gone.
is there a way to …
0
votes
2answers
46 views
not able to receive POST data in php file
i am using the following JQuery function to successfully POST data to the user_submit.php file, its just that the php file is unable to receive the data.
$(function() {
…
0
votes
2answers
44 views
$.post not POSTing anything
i am using the following jquery to post comments to user_submit.php
var submit = document.getElementById("submit_js");
var comment = document.getElementById("comment");
$("#submit").bind('click', …
0
votes
2answers
19 views
xmlHttp string passing
the current xmlhttp function i am using is passing a very tiny int to the php file for processing using the GET method.
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert …
1
vote
1answer
34 views
[jQuery] Load specific elements from a page with an AJAX call and append them to a list?
I've got two page:
Page 1 has a title, an empty ol and some jQuery that calls an AJAX function.
Page 2 has an ol filled with list items from which I plan on pulling specific ones.
The AJAX I'm …
0
votes
3answers
46 views
Website scraping using jquery and ajax
Hello,
I want to be able to manipulate the html of a given url. Something like html scraping. I know this can be done using curl or some scraping library.But i would like to know if it is possible to …
1
vote
2answers
65 views
MVC architecture for front-end
Hi!
I am writing application in PHP (+ MySQL database), but it gonna be mainly AJAX aplication. So, I am wondering, how to create frontend? Frontend also in MVC? Is it possible?
0
votes
2answers
55 views
[jQuery] $.ajax doesn’t seem to be working
I'm working on a jQuery-powered registration form, and I'm checking all the input with jQuery, and the only thing left is to see if a user is choosing an already-registered name.
Here's my Ajax …
2
votes
4answers
81 views
How to update a web page without reloading the web page using AJAX?
I'm trying to update info that a users entered in to a mysql database using php without reloading the web page how can I do this an example or tutorials will be nice.
If there is a tutorial on how to …
0
votes
2answers
30 views
adding values to a select box from a controller function (Ruby on Rails)
I have a Rails web application with a select box:
<%= select_tag :foo %>
I'm looking to write a function in the controller which would populate this select box with some values. What code …
0
votes
3answers
47 views
How to load an image asyncronously with jQuery and how to know that the image loading is complete?
Well, the question is in the title.
0
votes
3answers
54 views
ajax request to different host
i have the following javascript in my webpage:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://www.google.com', true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
…
0
votes
1answer
42 views
Adding event handler to iframe to invoke on keyup
On the webpage I have iframe, in which I display some content.
I want to run a function if any key is pressed inside iframe (iframe is editable).
I can do it using ajax (with scriptmanager on page):
…
