Detalles de error de página web
Agente de usuario: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; MATM)
Fecha: Tue, 12 Apr 2011 10:47:56 UTC
Mensaje: 'document.getElementById(...)' es nulo o no es un objeto
Línea: 20
Carácter: 7135
Código: 0
URI: http://localhost/sitioweb/js/jquery.uploadify.js
Mensaje: 'document.getElementById(...)' es nulo o no es un objeto
Línea: 20
Carácter: 7135
Código: 0
URI: http://localhost/sitioweb/js/jquery.uploadify.js
Código:
Alguien sabe porque falla en IE8$(document).ready(function() { <?php $random_digit=rand(0000,9999); ?> //Subida de archivo $("#fileUpload").fileUpload({ 'uploader': 'uploadify/uploader.swf', 'cancelImg': 'uploadify/cancel.png', 'folder': '../archivos/', 'buttonText': 'Subir fotos', 'checkScript': 'uploadify/check.php', 'script': 'uploadify/upload.php', 'fileDataName' : 'Filedata', 'multi': false, 'auto' : true, 'simUploadLimit': 1, /*'onComplete' :'db_register.php',*/ 'onComplete' :function(event, ID, fileObj, response, data) { $("#imagen_id").load("uploadify/db_register.php", {ran : <?php echo $random_digit;?> , objeto : fileObj}); $("#categorias").removeClass("oculto").addClass("visible"); $("#upload").removeClass("visible").addClass("oculto"); $("#mensajes").load("resize.php", {ran :<?php echo $random_digit;?> ,imagen : fileObj}); } }); }); <div id="upload" class="visible"> <input name="fileUpload" id="fileUpload" type="file" /> <a href="javascript:$('#fileUpload').fileUploadStart()">Subir</a> | <a href="javascript:$('#fileUpload').fileUploadClearQueue()">Limpiar</a> </div>
Mil gracias