Slick: How to get option from an instance?

Created on 23 Apr 2014  路  2Comments  路  Source: kenwheeler/slick

How would I return the value of an option set?

For example, in jQuery UI I can do the following:

if( $.ui.dialog.prototype.options.modal === true){
    //do something
}

is there a built in method to do this, as I can't seem to find it as I muck about in the console?

Most helpful comment

$('slider-selector').get(0).slick.options.yourOption

All 2 comments

$('slider-selector').get(0).slick.options.yourOption

thank you sir.

Was this page helpful?
0 / 5 - 0 ratings