I have a simple one text input form that when submitted, needs to fetch a php file (passing the inputs to the file) and then take the result (just a line of text) and place it in a div and fade that div into view.
here is what i have now
<form id=create method=POST action=create.php>
<input type=text name=url>
<input type="submit" value="Create" />
<div id=created></div>
What i need is the results of create.php?url=INPUT, to be dynamically loaded into the div called created.
I have the jquery form script, but i havnt been able to get it to work right. But i do have the library loaded (the js file)