kkre Posted April 13, 2016 Share Posted April 13, 2016 Witam, każdy produkt po otwarciu domyślnie wyświetla opis produktu w idTab10. Kolejna zakładka to idTab12 czyli moduł AWP z opcjami do produktu. Kod z product.tp: <div id="idTab12">{hook h="awpProduct"} </div> {if isset($HOOK_PRODUCT_TAB_CONTENT) && $HOOK_PRODUCT_TAB_CONTENT}{$HOOK_PRODUCT_TAB_CONTENT}{/if} Chcę aby kliknięcie w zakładkę idTab12 uruchamiało funkcję: <script type="text/javascript"> $(window).resize(); </script> W jaki sposób można to zrobić ? używam presty 1.5.6 Link to comment Share on other sites More sharing options...
vekia Posted April 13, 2016 Share Posted April 13, 2016 do elementu <li> z zakładką dodaj unikalną klasę lub id<li id="moj_element_id" class="moj_element_klasa"> następnie w pliku global.js dodaj: $(document).ready(function(){ $("#moj_element_id").click(function(){ $(window).resize(); }); }); Link to comment Share on other sites More sharing options...
kkre Posted April 13, 2016 Author Share Posted April 13, 2016 Dziękuje za szybką odpowiedź Czy chodzi o plik global.js z themes/szablon/mobile/js ? Link to comment Share on other sites More sharing options...
vekia Posted April 13, 2016 Share Posted April 13, 2016 powinien to być ten plik: themes/TWOJ-SZABLON/js/global.js jednak zależy to od szablonu, być może plik jest zlokalizowany w innym miejscu możesz podać linka, sprawdzę ;-) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now