hs.openerTagNames
Which elements should Highslide iterate to look for thumbnail openers.
Normally, Highslide is opened from HTML anchors (the a
element), but in theory it can be opened from any element. With the imagemap example, it is opened from area elements. Highslide needs to know where to look for openers, so it can index all openers on the page for preloading and next/previous navigation.
Details
Requires |
navigation, preloading or ajax |
Type |
array |
Default value |
["a"] |
Overrideable inline |
No |
Example
Make Highslide preload and navigate between images opened from divs in addition to anchors.
<script type="text/javascript">
hs.openerTagNames = ['a', 'div'];
</script>
See also