detectmobilebrowser.js
7 years ago
iris-script.js
6 years ago
mystickymenu-admin.js
6 years ago
mystickymenu.js
6 years ago
mystickymenu.min.js
6 years ago
iris-script.js
15 lines
| 1 | jQuery(document).ready(function($){ |
| 2 | jQuery('.my-color-field').wpColorPicker(); |
| 3 | jQuery(document).on('click', '.sticky-header-upgrade-now', function(e){ |
| 4 | e.preventDefault(); |
| 5 | jQuery(".sticky-header-menu ul li a:last").trigger("click"); |
| 6 | }); |
| 7 | jQuery(".multiple-options").change(function(){ |
| 8 | thisValue = jQuery(this).val(); |
| 9 | jQuery(this).closest(".rpt_plan").find("a.rpt_foot").attr("href", thisValue); |
| 10 | thisPrice = jQuery(this).find("option:selected").attr("data-price"); |
| 11 | jQuery(this).closest(".rpt_plan").find(".rpt_price").text("$"+thisPrice); |
| 12 | priceText = jQuery(this).find("option:selected").attr("data-header"); |
| 13 | jQuery(this).closest(".rpt_plan").find(".rpt_desc").text(priceText); |
| 14 | }); |
| 15 | }); |