This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| jQuery( document ).ready(function( $ ){ | |
| jQuery( document ).on('submit_success', function(){ | |
| // form has been submitted | |
| var email = $('#form-field-email_patient').val(); | |
| improvely.label(email); | |
| }); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" src="https://dobermandan.iljmp.com/improvely.js"></script> | |
| <script type="text/javascript"> | |
| improvely.init('dobermandan', 1); | |
| improvely.conversion({ | |
| goal: 'sale', | |
| revenue: <?php echo $_POST['Total']; ?>, | |
| reference: '<?php echo $_POST['orderID']; ?>' | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" src="https://dobermandan.iljmp.com/improvely.js"></script> | |
| <script type="text/javascript"> | |
| improvely.init('dobermandan', 1); | |
| improvely.conversion({ | |
| goal: 'sale', | |
| revenue: SecureCartOrders[0].Total, | |
| reference: SecureCartOrders[0].orderID | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| improvely.init("lfn",1);improvely.conversion({goal:"signup",revenue:67,reference:"\x3c?php echo $invoice_id; ?\x3e"}); | |
| improvely.label("\x3c?php echo $email; ?\x3e"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery('#mc4wp-form-1').on('submit', function() { | |
| improvely.label({ | |
| label: jQuery('#toolkit_email').val(), | |
| name: jQuery('#toolkit_name').val(), | |
| email: jQuery('#toolkit_email').val() | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| isInvalidDate: function(arg) { | |
| if (arg.day == 0 || arg.day() == 6) return true; | |
| var thisMonth = arg._d.getMonth() + 1; // Months are 0 based | |
| if (thisMonth < 10) { | |
| thisMonth = "0" + thisMonth; // Leading 0 | |
| } | |
| var thisDate = arg._d.getDate(); | |
| if (thisDate < 10) { | |
| thisDate = "0" + thisDate; // Leading 0 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type="text" name="datefilter" value="" /> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $('input[name="datefilter"]').daterangepicker({ | |
| autoUpdateInput: false, | |
| locale: { | |
| cancelLabel: 'Clear' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="reportrange" style="background: #fff; cursor: pointer; padding: 5px 10px; border: 1px solid #ccc; width: 100%"> | |
| <i class="fa fa-calendar"></i> | |
| <span></span> <i class="fa fa-caret-down"></i> | |
| </div> | |
| <script type="text/javascript"> | |
| $(function() { | |
| var start = moment().subtract(29, 'days'); | |
| var end = moment(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type="text" name="birthday" value="10/24/1984" /> | |
| <script> | |
| $(function() { | |
| $('input[name="birthday"]').daterangepicker({ | |
| singleDatePicker: true, | |
| showDropdowns: true, | |
| minYear: 1901, | |
| maxYear: parseInt(moment().format('YYYY'),10) | |
| }, function(start, end, label) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type="text" name="datetimes" /> | |
| <script> | |
| $(function() { | |
| $('input[name="datetimes"]').daterangepicker({ | |
| timePicker: true, | |
| startDate: moment().startOf('hour'), | |
| endDate: moment().startOf('hour').add(32, 'hour'), | |
| locale: { | |
| format: 'M/DD hh:mm A' |
NewerOlder