jquery file upload method
Hi friends,
I want to upload a image using jquery.... I tried many "googles" ..... Please anyone give me a right tutorial please ....
I coded upto this.....
How to receive files in my php page ? Please help
- function addPhoto(){
- var term = $('#photo').val();
- $.post('includes/addPhoto.php',{s:term}, function(data) {
- alert(data);
- });
- return false;
- }