Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can’t have more than one UL Slider on page Re: Can’t have more than one UL Slider on page

#135357
Alen
Participant

You can only have one unique ID on any given page.

If you need to add more than one slider, you would essentially do this:

In your HTML:

… /* code */…

… /* code */…

In your JavaScript, you would target them individually:

$(‘#slider1’).someSliderPlugin({ … /* options */…});
$(‘#slider2’).someSliderPlugin({ … /* options */…});