Skip to Content

JavaScript File

URL: https://vipdubaidivas.com/wp-content/themes/escortwp/js/checkator.jquery.js?ver=6.9.1
HTTP Status: 200 OK
MIME Type: text/javascript
Last Modified: Fri, 03 Oct 2025 17:05:41 GMT
Download Time: Less than a second
Cookies: None
Size: 4 KB
HTTP Headers:  5 headers
Links In:  1 pages
Links Out:  0 links
Images:  0 images
CSS:  0 files
JavaScript:  0 files
OK Issues: No issues found

1/*

2 Checkator jQuery Plugin

3 A plugin for radio and checkbox elements

4 version 1.1, May 16th, 2015

5 by Ingi á Steinamørk

6

7 The MIT License (MIT)

8

9 Copyright (c) 2013 Ingi á Steinamørk

10

11 Permission is hereby granted, free of charge, to any person obtaining a copy of

12 this software and associated documentation files (the "Software"), to deal in

13 the Software without restriction, including without limitation the rights to

14 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of

15 the Software, and to permit persons to whom the Software is furnished to do so,

16 subject to the following conditions:

17

18 The above copyright notice and this permission notice shall be included in all

19 copies or substantial portions of the Software.

20

21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

22 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS

23 FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR

24 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER

25 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN

26 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

27*/

28

29(function($) {

30 $.checkator = function (element, options) {

31 var defaults = {

32 prefix: 'checkator_'

33 };

34

35 var plugin = this;

36 var type = $(element).attr('type');

37 var checked = $(element)[0].checked;

38 var wrapper = null;

39 var new_element = null;

40 plugin.settings = {};

...

</html>