����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.144.85.96 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./gle.gltechlimited.com/public/assets/js/custom/ |
Upload File : |
/* ---------------------------------- : Custom - Rating js : ---------------------------------- */ $(function () { 'use strict'; $('input.check').on('change', function () { alert('Rating: ' + $(this).val()); }); /* -- Rating Tooltips -- */ $('.rating-tooltip').rating({ extendSymbol: function (rate) { $(this).tooltip({ container: 'body', placement: 'bottom', title: 'Rate ' + rate }); } }); /* -- Rating Tooltips Manual -- */ $('.rating-tooltip-manual').rating({ extendSymbol: function () { var title; $(this).tooltip({ container: 'body', placement: 'bottom', trigger: 'manual', title: function () { return title; } }); $(this).on('rating.rateenter', function (e, rate) { title = rate; $(this).tooltip('show'); }) .on('rating.rateleave', function () { $(this).tooltip('hide'); }); } }); $('.rating').each(function () { $('<span class="badge badge-info"></span>') .text($(this).val() || ' ') .insertAfter(this); }); $('.rating').on('change', function () { $(this).next('.badge').text($(this).val()); }); });