Two Laptop Bag
The moose likes HTML, CSS and JavaScript and the fly likes AJAX Question Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "AJAX Question" Watch "AJAX Question" New topic
Author

AJAX Question

Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Ok, I actually ran across a use for AJAX on a website I am working on. Stripped down, I am selecting an image from a list and I need to refresh the image on the page. Simple enough.

I am calling a Servlet to process the request and calling the servlet without using AJAX works fine, so I know that is not the problem. So I have to assume it is my JS. Both alert messages are popping up from the updateImage() function, but it would appear that my servlet is never being called. Any help is appricated.

Thanks.


[ August 19, 2005: Message edited by: Gregg Bolinger ]
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Ok, changed some code and now the servlet is getting called. However, the img tag is not being updated. I know I am retrieving correct values because I had alert debugs in before. After a selection change, the img src is still "" instead of the image path.

Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

FYI - changing

<img name="theImage" src=""/>

to

<img id="theImage" src=""/>

didn't make any difference.
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Ok, I am stupid. Made the img tag a div with the appropriate ID and all is well.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: AJAX Question
 
Similar Threads
Regading getElementById
XMLHttpRequest problem
How to display value in combo box using AJAX
Insert more than one row in table
Notify Users before session expires