1
vote
0answers
25 views
AJAX Prototype problem with Firefox
I'm testing with Firefox 3.5.5.
I'm using prototype.js which is giving me some problems with a text area.
I have a textarea called "mytextarea". It seems that when the content of …
0
votes
4answers
52 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 …
1
vote
5answers
56 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
2answers
45 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 …
1
vote
3answers
66 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
6answers
69 views
Is it possible to upload image to server without submitting the form?
I have a file field in my form.
I want the user to be able to choose an image, press OK, and then without submitting the form, preview the image in a smaller resized way. If every …
0
votes
2answers
42 views
Reloading Content of Ajax Tab
I'm completely puzzled, I make an ajax call inside a Jquery UI Tab, after that I want to refresh the content of the tab, the function that should be doing it is:
function reloadTa …
0
votes
3answers
52 views
JS functions not working while loading html using Ajax
When I load an asp file (Main_Page_1.asp), in the click event of a button there is a function invocation is not working. There is I am stuck in.
for eg:-
Main_Page_1.asp
<he …
1
vote
2answers
57 views
jquery ajax response removes the + character
Update:
It looks like the problem is when I'm reading the value from the html to begin with.
This is the markup:
<input name="someval" type="text" value="Receive (+ open)" / …
0
votes
1answer
46 views
Problem with jquery ajax in Opera and Google Chrome
I have a page where I need to add a drag and drop functionality to certain elements. When the drop event occurs, it makes an ajax call to a php function and then refreshes the cont …
0
votes
3answers
28 views
ajax - getting seperate lines of data
hi. i would like to ask if it is possible in ajax technology (working with servlets) to get not the whole data from responseText but line by line. i mean when putting in servlet li …
0
votes
2answers
40 views
Autocomplete: populate multiple fields based on selection.
Hi.
I have a form, and there are 5 fields. The first field is an autocomplete field. I'd like to have the other 4 fields populated based on the autocomplete field selection. The d …
-1
votes
3answers
48 views
Progress Bar using javascript
I want to show a processing bar to the user.
The problem statement:- The user has a number of transactions to approve. When he multi selects say 10-20 transactions and approves by …
0
votes
6answers
83 views
Javascript event when mouse leaves browser window
I'd like some Javascript code to run when the mouse leaves the browser window. I only need to support Safari (WebKit.)
I tried putting a mouseout handler on window. That handler i …
1
vote
3answers
84 views
What is the easiest, most reputable, most seasoned AJAX framework? [closed]
I have dabbled with various AJAX frameworks, namely GWT, Dojo, Ext-JS, jQuery UI. I am interested in understanding what AJAX frameworks best meet the following criteria:
- Most ea …
