HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
File: /var/www/admin.javaapp.co.uk/public/plugins/bootstrap-maxlength/custom-bs-maxlength.js
$('input.basic').maxlength();
$('input.threshold').maxlength({
    threshold: 20,
});
$('input.few-options').maxlength({
    alwaysShow: true,
    threshold: 10,
    warningClass: "badge badge-success",
    limitReachedClass: "badge badge-warning"
});
$('input.alloptions').maxlength({
  	alwaysShow: true,
  	threshold: 10,
  	warningClass: "badge badge-success",
    limitReachedClass: "badge badge-dark",
  	separator: ' of ',
  	preText: 'You have ',
  	postText: ' chars remaining.',
  	validate: true
});
$('textarea.textarea').maxlength({
    alwaysShow: true,
});

// Positions
$('input.placement-top-left').maxlength({
    placement:"top-left",
    alwaysShow: true
});
$('input.placement-top').maxlength({
    placement:"top",
    alwaysShow: true
});
$('input.placement-top-right').maxlength({
    placement:"top-right",
    alwaysShow: true
});
$('input.placement-left').maxlength({
    placement:"left",
    alwaysShow: true
});
$('input.placement-right').maxlength({
    placement:"right",
    alwaysShow: true
});
$('input.placement-bottom-left').maxlength({
    placement:"bottom-left",
    alwaysShow: true
});
$('input.placement-bottom').maxlength({
    placement:"bottom",
    alwaysShow: true
});
$('input.placement-bottom-right').maxlength({
    placement:"bottom-right",
    alwaysShow: true
});