Piklis

Shoptet POP - přejmenování checkboxu registrace newsletterue

Apr 4th, 2017
993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1. <!-- autor: [email protected] -->
  2. <!-- testovano na sablone POP -->
  3.  
  4. <script>
  5. //Skript na prejmenovani checkboxu "Chci odebírat newslettery" v kosiku
  6. $(document).ready(function() {
  7.     if($("#sendNewsletter").length && $(".jpText").length == 0) {
  8.        $("#sendNewsletter").parent().contents().filter(function(){return this.nodeType === 3 && this.data.trim().length > 0}).wrap('<span class="jpText" />');
  9.         $(".jpText").text("Chci odebírat newslettery").prepend(" ");
  10.     }
  11. });
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment