Click here to Skip to main content
15,905,963 members

Comments by Adrian Fatol (Top 8 by date)

Adrian Fatol 18-Nov-14 3:49am View    
- first you need to suppress the events when clicking the submit button:

jQuery('#submit').click(function(event)
{
event.stopPropagation(); // Stop stuff happening
event.preventDefault(); // Totally stop stuff happening

- second, you need to add the data to your ajax post:

$.ajax(
{
url: 'uploader.php', // point to server-side PHP script
dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
type: 'post',
data: form_data
..................


posting the html would also help.
Adrian Fatol 17-Nov-14 7:42am View    
there are many solutions to this, see: https://www.google.ro/search?q=upload+image+using+ajax+jquery&oq=upload+image+using+ajax. what kind of problem do you encounter, more precisely?
Adrian Fatol 3-Nov-14 6:06am View    
You should ask yourself how much do you afford to invest in this and who will do the refactoring, what's the experience of the people involved in this.
Adrian Fatol 30-Oct-14 8:13am View    
please see the updated solution
Adrian Fatol 30-Oct-14 7:29am View    
please post your mail.php again