One Hat Cyber Team
Your IP:
216.73.216.58
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
fluxyjvi
/
public_html
/
assets
/
admin
/
js
/
View File Name :
load.js
(function($) { "use strict"; $(document).ready(function() { //cart item remove code $('.cart-remove').on('click', function(){ $(this).parent().parent().remove(); }); //cart item remove code ends /* Bootstrap colorpicker js */ $('.cp').colorpicker(); // Colorpicker Ends Here // IMAGE UPLOADING :) $(".img-upload").on( "change", function() { var imgpath = $(this).parent(); var file = $(this); readURL(this,imgpath); }); function readURL(input,imgpath) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { imgpath.css('background', 'url('+e.target.result+')'); } reader.readAsDataURL(input.files[0]); } } // IMAGE UPLOADING ENDS :) // GENERAL IMAGE UPLOADING :) $(".img-upload1").on( "change", function() { var imgpath = $(this).parent().prev().find('img'); var file = $(this); readURL1(this,imgpath); }); function readURL1(input,imgpath) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { imgpath.attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } // GENERAL IMAGE UPLOADING ENDS :) // Check Click :) $(".checkclick").on( "change", function() { if(this.checked){ $(this).parent().parent().parent().next().removeClass('showbox'); } else{ $(this).parent().parent().parent().next().addClass('showbox'); } }); // Check Click Ends :) // Check Click1 :) $(".checkclick1").on( "change", function() { if(this.checked){ $(this).parent().parent().parent().parent().next().removeClass('showbox'); } else{ $(this).parent().parent().parent().parent().next().addClass('showbox'); } }); // Check Click1 Ends :) // Alert Close $("button.alert-close").on('click',function(){ $(this).parent().hide(); }); }); // Drop Down Section Ends })(jQuery);