jQuery.preloadImages = function() { for(var i = 0; i<arguments.length; i++) jQuery("<img>").attr("src", arguments[i]); }
$(function() {
$('#background-wrap img').css('opacity',0);
$('#background-wrap img').animate({ opacity: 1}, 3000);
});
It's not doing performing of the functions that are in the code. Where did I mess up the syntax because I can seem to figure it out myself?
Cheers!
$(function(){});will execute on when the dom is loaded. Is there an element with id of "background-wrap" with img children on page load? What are you trying to do with the bit at top (jQuery.preloadImages = ...)? if you are trying to add a function to jQuery, try$.fn.dropDown = function() {.... This function doesn't appear to be called anywhere. Could you provide more of your code? HTML too? – Spycho Jun 15 '11 at 16:00