Revonzy Mini Shell

Şuanki Dizin: /home4/shrishtiarchitec/public_html/adminpanel/aboutus/
Dosya Yükle :
Şuanki Dosya : //home4/shrishtiarchitec/public_html/adminpanel/aboutus/aboutus.js

// JavaScript Document
$(document).ready(function(){
	
	$('#loading').hide();
	
	//////////////////////////////////
	// on click of submit button
	//////////////////////////////////
	$('#submit').click(function(){
     
		$('#submit').hide();
	 	$('#loading').show();			
	
		var formdata = new FormData();
		formdata.append('type', "add");
		formdata.append('url', $("#url").val());
		formdata.append('file', $("#fileupload").prop('files')[0]);
		
		$.ajax({
		   type: "POST",
		   url: "aboutus_curd.php",
		   data:formdata,
		   success: function(data){//alert(data);
			   if(data==1)
				{	
					$('#loading').hide();		
					$( "#dialog1" ).dialog({
							dialogClass: "alert",
							buttons: {
							 'Ok': function() {
								window.location.replace("list.php");
								}
							}
						  });
				}
				else
				{
				 $('#loading').hide();		
					$( "#dialog2" ).dialog({
							dialogClass: "alert",
							buttons: {
							 'Ok': function() {
								window.location.replace("index.php");
								}
							}
						  });
					
				}
		   },
		   cache: false,
		   contentType: false,
		   processData: false
		});//eof ajax
		
	});
	
    /////////////////////////////////
	// on click of edit button
	/////////////////////////////////		
	$('#update').click(function(){
		var newimage='';
		var oldimage=$('#imageupload').val();
		if(($("#imageupload").val()=='') && ($("#fileupload").val().length==0))
		{
			alert('Image Must be Upload');
			return false;
		}
		else if($("#fileupload").val().length>0)
		{
			 newimage=$("#fileupload").prop('files')[0];
			 oldimage='';
		}
	
		$('#update').hide();
	    $('#loading').show();			
		var formdata = new FormData();
		formdata.append('type', "edit");
		formdata.append('url', $("#url").val());
		formdata.append('imageupload', oldimage);
		formdata.append('fileupload', newimage);
		formdata.append('id', $("#id").val());

		$.ajax({
		   type: "POST",
		   url: "aboutus_curd.php",
		   data:formdata,
		   success: function(data){ //alert(data);
			   
		   		if(data==1)
				{
					$('#loading').hide();	
					$( "#dialog" ).dialog({
							dialogClass: "alert",
							buttons: {
							 'Ok': function() {
								window.location.replace("list.php");
								}
							}
						  });
				}else
				{
					$('#update').show();
					alert('Something is wrong your file is not submitted..');
					
				}

		   },
		   cache: false,
		   contentType: false,
		   processData: false
		});//eof ajax		
	});
	
	
	
	
	//////////////////////////////////
	// on click of delete button
	//////////////////////////////////
	
	$(document).on('click', '.delete', function() {
		
		var didConfirm = confirm("Are you sure?");
	   	if (didConfirm == true) {
			var id=$(this).attr("id");
			
			$.ajax({
				url:"aboutus_curd.php",
				type: "POST",
				data: {type:"delete",id:id},
				success: function(data){//alert(data);
					if(data==1)
					{
						$('#loading').hide();	
						$( "#deletemsg" ).dialog({
							dialogClass: "alert",
							buttons: {
							 'Ok': function() {
								window.location.replace("list.php");
								}
							}
						  });
					}
					location.reload();
				}
			});
			
	    }
	});
	
	
});

//Search Filter Write HEre
$(document).on('click','#search',function()
{
	
		var x;
		$.ajax({
			url:"filter_report.php",
			type: "POST",
			data: {type:"searchList",langauge:$('#langauge').val(),category:$('#category').val(),subcategory:$('#subcategory').val()},
			async:false,
			success: function(data){ 
			$('#add').html(data);
			//alert(data);
			}
		});
			

});



$(document).ready(function() {
    $(".number").keydown(function (e) {
        // Allow: backspace, delete, tab, escape, enter and .
        if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
             // Allow: Ctrl+A, Command+A
            (e.keyCode == 65 && ( e.ctrlKey === true || e.metaKey === true ) ) || 
             // Allow: home, end, left, right, down, up
            (e.keyCode >= 35 && e.keyCode <= 40)) {
                 // let it happen, don't do anything
                 return;
        }
        // Ensure that it is a number and stop the keypress
        if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) {
            e.preventDefault();
        }
    });
});

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux vps.suncrosonline.com 3.10.0-862.3.2.el7.x86_64 #1 SMP Mon May 21 23:36:36 UTC 2018 x86_64
Apache
162.241.69.42