Soy un novato bonifide jQuery y tengo un código jquery que he reconstruido, pero sigo recibiendo un error cuando se carga la página. El problema es que no estoy seguro si tengo todas las llaves y paréntesis cerrado correctamente y realmente apreciaría otro par de ojos en esto:¿Existe alguna forma de validar el código jQuery?
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'scrollLeft',
timeout: 8000
});
});
$('#freeQuote form')
.validate({
submitHandler: function(form) {
$(form).ajaxSubmit({
success: function() {
var Image = $('<img />').attr({src:'_images/free-quote-confirm.png', width:231, height:267, alt:"Success"});
$('#freeQuote form').hide();
$('#freeQuote').append(Image)
}
});
}
});
$('#news-signup form')
.validate({
submitHandler: function(form) {
$(form).ajaxSubmit({
success: function() {
var Image = $('<img />').attr({src:'_images/register-thanks.png', width:332, height:35, alt:"Success"});
$('#news-signup form').hide();
$('#news-signup').append(Image)
}
});
}
});
tengo esta carga de su propio archivo .js.
Gracias.
o conseguir [FirebugLite] (http://getfirebug.com/firebuglite), que funciona en IE6 +, Firefox, Opera , Safari y Chrome – Oded
Buen consejo. Lo hice funcionar. Gracias por el consejo de proceso. – fmz