How to use multiple jssor slider on a single page - jssor

I want to use multiple jssor slider on a single page. However, it is working only with div id = "jssor_1".
Can you please suggest on how to use multiple jsson slider on a single page?
Thank you in advance,
Rajesh

Each slider should have an unique id.
If the first is jssor_1, you can set the id of the second slider to jssor_2.
And make sure to replace all 'jssor_1' with 'jssor_2'.
Here is an option ID to make slider with different id easily.
See Options

Related

Add multiple pictures in one Content Slider all at once

I have to add about 100 pictures in a content slider.
Each time, I have to add each picture seperatly... this is painfully slow.
Is there a way to add them all at once to the content slider?
In most places TYPO3 enables you to add multiple records from the record selector popup. Just use the + buttons/ links instead of clicking on the record name.

jssor form fields on top of slider - possible?

Can form fields be layered on top of the jssor slider?
I might want to use the content slider but have search form fields on top of the slider that don't change position even though the slider is changing pics.
I looked i think at all the jssor samples but didn't see one quite like as described above.
Thanks

Can there be more than one slider using jssor?

I have just started using a library called JSSOR (for sliding elements) http://www.jssor.com/ and I'm wondering if there can be more than one element sliding on the same page.
I couldn't get it to work using a javascript library called marquee (not marquee the tag).
Yes, you can place multiple jssor sliders on one page.
Note that different slider uses different name. If the name of the first slider is slider1, you can name the second slider as slider2 then.
Btw, you can search jssor multiple on stackoverflow.

JSSOR two sliders on a single page?

Hello I am trying to create a webpage that has two image sections. I would like to use you slider for each image section. The first one loads ok but the second one doesn't. i keep getting this error:
JSSOR Uncaught Error: prototype of 'thumbnavigator' not defined
I know from a similar post that you cant have a 2nd container with the same name.
I tried changing the 2nd slider id to "slider2_container" but that didn't work.
Is there any way for me put two sliders on a single page?
any help would be appreciated as I don't really want to start all over again with a different slider.
the slider Im using is the one on the top of this page
http://www.jssor.com/demos/image-gallery.html

how to display drop-down in iphone, like in this image

hi
I want to display drop down menu like the one you see in this image http://callingcard.marigoholdings.com/Screenshots.html#1
(below From and To)
How can i create that? Any good tutorial.
Best regards
You will have to use UIPicker for this purpose.This is used as a dropdown whereever needed in iPhone.
Please refer the link below
How to create drop down list box for an iphone app
Thanks
It looks like that app is using a combination of a UIWebView and an html select tag. To do something similar would involve a solid bit of html and javascript hackery, but in essence would be:
Create a UIWebView and inject the appropriate HTML into it to make the dropdown.
User uses dropdown as if it was in mobile safari and picks something.
When you need it, you use a javascript call with stringByEvaluatingJavaScriptFromString: to grab the value of the dropdown by id and pass it back to your code.
There are a few gotchas here, mainly with constructing the dropdown and the webview such that it's big enough to show the expanded dropdown but transparent to see under it when the dropdown is not expanded, it's not scrollable, and that sort of thing.
I wonder if a UIActionsheet might be better ... you could easy make a button to call the sheet. Adding multiple buttons to the sheet transforms it into a table that you can scroll.