I've got a small .js file on my wp site where I have been adding in all of my small js scripts. It works perfectly, but I am stuck trying to figure out how to add in another script. So far jslint does not complain about my current file and says it is ok.
my script:
jQuery(function ($) {
function mycarousel_initCallback(carousel) {
jQuery('.jcarousel-control a').bind('click', function() {
carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
return false;
});
jQuery('.jcarousel-scroll select').bind('change', function() {
carousel.options.scroll = jQuery.jcarousel.intval(this.options[this.selectedIndex].value);
return false;
});
// Next Button
$('#mycarousel-next').bind('click',
function() {
carousel.next();
return false;
});
// Prev Button
$('#mycarousel-prev').bind('click',
function() {
carousel.prev();
return false;
});
};
}
The script I want to add in starts like this:
jQuery(document).ready(function($) {
var gallery = $('#thumbs').galleriffic({
delay: 3000, // in milliseconds
});
});
Where I keep getting stuck, is that I am finding a lot of scripts that start with the jQuery(document) part. When I try to add scripts that begin like that then everything breaks.
I'm guessing this is a really stupid question, but what do I need to change in the new addon script so that it will play nice with my current file?
thank you for your help and time on this one. Trying hard to learn js though it's a slow process here.
