Well as weird as it sounds it's that simple. i can't understand why but if i comment the fade in it dosen't crash and works perfectly.
Same result in IE 8 &9
When i say crash i mean i get the following message (Windows 7) :
Internet Explorer has stopped working, windows will look for solution
I don't think u want to see the entire code because there's alot of JS involved but the relevant part is :
$('#add_image_upload').fadeOut(1000, function(){
}); // has some commented code inside
html :
<div id="add_image_upload">
<form action="http://localhost/ci/index.php/do_upload"
method="post" accept-charset="utf-8" enctype="multipart/form-data">
<span id="fileinput_button_label">TEXT</span>
<input type="file" name="userfile" id="fileupload_input" multiple="">
</form>
</div>
Anyone knows what could cause this? Could it be related to memory size because i do alot of jQuery effects in this page?
Apperently when outputing some HTML i forgot to add a / to the ending tag, and other browsers automatically corrected it so it worked but IE dosen't.
In case this happens make sure your HTML is valid.