I'm not sure if this is the right forum for this post ... but:
I've got an AJAX thing going on so that when the user clicks on an 'event', javascript calls a php script which generates html and presents a new <div> for the user to edit the 'event' ...
problem is, if the 'event' text was My birthday then the html returned from the php code would look like this:
<input id=b_Thing_Desc name=b_Thing_Title size=30 value= My Birthday> </td>
so far, so good .... but, when displaying that html the input tag would only contain the My word and not the Birthday word too...
I would suggest that was a problem with your server side code than anything else, i should take a look at that to make sure it is returning what you want properly.
Next thing to look at would be the javascript that makes the AJAX call and make sure it is passing the full value to the server side script.
Bookmarks