hs.cacheAjax
Cache the contents of AJAX popup for instant display.
Similarly to Highslide image popups, AJAX popup contents can be preloaded on page load. But unlike image popups where a specific number of images are preloaded on page load, AJAX preloading is controlled for each popup using the cacheAjax setting. This is because text content often is less structured, and using it like this gives you the developer full control of the preloading.
Details
Requires |
ajax |
Type |
boolean |
Default value |
true |
Overrideable inline |
Yes |
Example
General setting to all expanders
hs.cacheAjax is set to true by default. To disable it on all expanders, set it to false in the head section of your web page.
<script type="text/javascript">
hs.cacheAjax = false;
</script>
Specifically setting it to a single expander
<a href="ajax.htm" onclick="return hs.htmlExpand(this, {
objectType: 'ajax', contentId: 'highslide-html',
cacheAjax: false })">
Click to open
</a>
See also