Hi,
I'm somewhat new to jQuery/JavaScript, so any help would be greatly appreciated.
I have a few textboxes that need to be populated when a user clicks a hot spot on an image map. Each hot spot has an alt tag representing the ID number of the object I need to retrieve from a database.
To retrieve the info from the DB, I have a small PHP script that is called with jQuery's .post() function, something to the effect of:
$.post($('#myForm').attr('action'),formInput, function(data){ ... });
My question is how do I use jQuery to get and manipulate the data that the PHP function retrieves from the DB?
Thanks in advance for any assistance.
- EF