Hi all,
I am trying to implement a different way for my visitors to "browse" through the products, and by clicking on the pictures, they go to the product page.
Thhe problem I have is that using jquery, I need to give an id to each wrapper and this id is in the code within the <head> tags..as follow:
The "wrapper1" is the id I want to change by the "SectionPage" variable..but there are spaces in the SectionPage and I am not sure the spaces will be causing problems in the javascript code above...?
Hence my question : is there any Variable available in actinic that will return the SectionPage but with an underscore _ rather than spaces ? I thought about replacing SectionPage by SectionPageName but not sure if the "." of the *.html will create problem too ?
If everything works, I will be implementing this in the section link layout of every section, and all the catalog will be available for browsing through jewellery like this:
http://www.body-piercing-jewellery.com
Any help appreciated..
I am trying to implement a different way for my visitors to "browse" through the products, and by clicking on the pictures, they go to the product page.
Thhe problem I have is that using jquery, I need to give an id to each wrapper and this id is in the code within the <head> tags..as follow:
Code:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery.noConflict();
// f3D instance #1
jQuery('#f3d_wrapper1').f3d ({
autoStart : true,
controlsHide : false,
sliderHeight : '350px',
sliderWidth : '100%',
useReflection : true,
dynamicColors : false,
useLogo : 'acatalog/LogoBioFlex.png',
slide_1 : {'vert': 'above', 'horz': 'center'},
slide_2 : {'vert': 'above', 'horz': 'center'},
slide_3 : {'vert': 'above', 'horz': 'center'},
slide_4 : {'vert': 'above', 'horz': 'center'},
slide_5 : {'vert': 'above', 'horz': 'center'},
slide_6 : {'vert': 'above', 'horz': 'center'},
slide_7 : {'vert': 'above', 'horz': 'center'},
slide_8 : {'vert': 'above', 'horz': 'center'},
slide_9 : {'vert': 'above', 'horz': 'center'},
slide_10 : {'vert': 'above', 'horz': 'center'},
slide_11 : {'vert': 'above', 'horz': 'center'},
});
});
</script><script type="text/javascript">
Hence my question : is there any Variable available in actinic that will return the SectionPage but with an underscore _ rather than spaces ? I thought about replacing SectionPage by SectionPageName but not sure if the "." of the *.html will create problem too ?
If everything works, I will be implementing this in the section link layout of every section, and all the catalog will be available for browsing through jewellery like this:
http://www.body-piercing-jewellery.com
Any help appreciated..
Comment