upload file in jquery and php
Hi
I hava one dialog box with input file in it .
- if(act=='exchangePic')
- {
- $("#dialog").attr('title','Change picture ').dialog({buttons:{'ok':{class:'btn',text:'Ok',click:function(){
- $('#imgHolder_'+picture_id).css({'background-color':''});
- $(this).dialog('close');
-
- }}}, show:'fade',hide:'explode',width:'380px',modal:true,closeText:' X '}).html("<form><input type='file' id='newUpload' name='newUpload' class='upfile'/></form>");
-
- }//end of act=='exchangePic'
I want when click Ok button in dialog box selected file uploaded
How can I do this with jquery & php? Thanks