so im really getting into the ajax crowd, though i dont strictly use ajax (no xml) i like the functionality of calling server side scripts for dynamic php functions...
anyway i have a few images in this form ive made that i would like to be placed correctly
let me explain....
I have a form input..
<input type='text' name='provided' id='prov' onkeyup='checker(cariables)'>
then i have a div:
<td><div id='prov1'></div></td>
the ajax function calls the variables in the onkeyup section and based on the result displays an image.
so the problem is the image is not displaying in the right size OR the right place in the div... if i use valign='bottom' it doesnt change, which is the problem, instead of aligning with the bottom of the table cell it stays above, and makes the table all messed up, and messes with my layout...
the code for the images is:
<img src='../images/loading.gif' align='center' valign='bottom' width='16' height='16' />
so im wondering if anyone can even understand my problem, let alone help me...
thank you...
~Ryan