I am using ajax upload for uploading a image .it is working in all browser but not working in IE.
here is my code what i m using,
$('#photoimg').live('change', function(){
$(".selectedphoto").html('');
$(".selectedphoto").html('<img src="loader.gif" alt="Uploading...."/>');
$("#imageform").ajaxForm({
target: '.selectedphoto',
success: onsuccess,
}).submit();
})';
HTML
<form id="imageform" method="post" enctype="multipart/form-data" action='ajaximage.php'>
<input type="file" name="photoimg" id="photoimg" class="required" />
</form>
Thanks in advance.