hey guys just doing some messing around and learning a few new things to kill time at the moment im fiddling with javascript and i have encountered a problem.
so the problem is that i have downloaded a small jQuery slideshow thing of the internet being simple fade slideshow (i have hacked it to pieces removing stuff i didn't deem necessary) and im trying to get it to run two independent slideshows at the same time. i want these slideshows to have different dimensions for width and height preferably transition time also and my problem is that the function will only run one slideshow.
$(document).ready(function(){
$('#slideshow').fadeSlideShow({
width: 300,
height: 343,
});
is there a way that i can say change #slideshow to #slideshow1 and then have it run on the same bit of code at the same time as #slideshow? obviously i could just change some names around and have a ton of text but id prefer to find a neater way.
im fairly novice so any advice is greatly appreciated