phongkhamdakhoagialai.vn Open in urlscan Pro
103.82.133.134  Public Scan

URL: https://phongkhamdakhoagialai.vn/js/app.js
Submission: On December 25 via api from US — Scanned from FR

Form analysis 0 forms found in the DOM

Text Content

$(document).ready(function() {
	// const _BASE_URL = "http://localhost/dakhoahoancauvn/";

	const _BASE_URL = $('#base_url').val();
	
	$('.banner-slider').slick({
		infinite: true,
		slidesToShow: 1,
		slidesToScroll: 1,
		infinite:true,
		arrows: false
	});
	$('.chuyenkhoa-slider').slick({
		infinite: true,
		slidesToShow: 4,
		slidesToScroll: 4,
		infinite:true,
		prevArrow:'.ck-prev',
		nextArrow:'.ck-next'
	});

	$('.ykien-slider').slick({
		infinite: true,
		slidesToShow: 2,
		slidesToScroll: 2,
		infinite:true,
		arrows: false
	});

	$('.camnhan-slider').slick({
		infinite: true,
		slidesToShow: 3,
		slidesToScroll: 3,
		infinite:true,
		arrows: false,
		dots: true
	});

	$(".camnhan-l-i").click(function(){
		if (!$(this).hasClass('active')) {
			$(".camnhan-l-i").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			$('.cn-l-content').slideUp();
			$('#cn-l-content-'+id).slideDown();
		}
	});

	$('.moitruong-slider').slick({
		infinite: true,
		slidesToShow: 4,
		slidesToScroll: 4,
		infinite:true,
		prevArrow:'.moitruong-prev',
		nextArrow:'.moitruong-next'
	});
	
	// search
	$("#btn-searh").click(function (e) {
		console.log(1);
		key = $("#txt-search").val();
		if(key!=""){
			var key2 = key.replace(/%20/g, '+');
			window.location.href = "tim-kiem/" + key2+"/";
		}
		return false;
	});

	$('#txt-search').keypress(function(event){
		var keycode = (event.keyCode ? event.keyCode : event.which);
		if(keycode == '13'){
			key = $(this).val();
			if(key!=""){
				var key2 = key.replace(/%20/g, '+');
				window.location.href = "tim-kiem/" + key2+"/";
			}
			return false;
		}
	  });

	$(".tintuc-tab-item").click(function(){
		var id =  $(this).data('id');
		if (id>0) {

			if (!$(this).hasClass('active')) {
				$(".tintuc-tab-item").removeClass('active');
				$(this).addClass('active');

				$.ajax({
					url: _BASE_URL+'/ajax/tintuc.php',
					type: 'POST',
					dataType: 'text',
					data: {id: id},
					success : function(response){
						$("#ajax-tintuc").html(response);
					}
				});
			}
		}
	});

	// $('.cauhoi-item span').click(function(){
	// 	if (!$(this).hasClass('active')) {
	// 		$('.cauhoi-item span').removeClass('active');
	// 		$(this).addClass('active');
	// 		let id = $(this).data('i');
	// 		$('.cauhoi-item p').slideUp();
	// 		$("#ch-content-"+id).slideDown();
	// 	}
	// });

	$('.count').each(function () {
		var $this = $(this);
		jQuery({ Counter: 0 }).animate({ Counter: $this.attr('data-stop') }, {
			duration: 10000,
			easing: 'swing',
			step: function (now) {
				$this.text(Math.ceil(now));
			}
		});
	});

	$('.benh-tab li').mouseenter(function(event) {
		var id =  $(this).data('id');
		if (id > 0) {

			if (!$(this).hasClass('active')) {
				$('.benh-tab li').removeClass('active');
				$(this).addClass('active');

				$.ajax({
					url: _BASE_URL+'/ajax/benh.php',
					type: 'POST',
					dataType: 'text',
					data: {id: id},
					success : function(response){
						$("#benh-ajax").html(response);
					}
				});
			}
		}
	});	

	$(document).on('mouseenter','.benh-l li',function(){
		if (!$(this).hasClass('active')) {
			$(".benh-l li").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/benh-sub.php',
				type: 'POST',
				dataType:"text",
				data: {id: id},
				success : function(result){
					$('#benh-r').html(result);
				}
			});
		}
	});


	// nam khoa
	$(".namkhoa-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".namkhoa-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#namkhoa-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'/ajax/namkhoa.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#namkhoa-content').html(result);
				}
			});
		}
	});

	$("#namkhoa-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#namkhoa-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".namkhoa-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/namkhoa.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#namkhoa-content').html(result);
				}
			});
		}
	});

	$('.namkhoa-tab').slick({
		dots: false,
        arrows: true,
		infinite: true,
		variableWidth: true,
	});


	// phukhoa
	$(".phukhoa-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".phukhoa-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#phukhoa-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'/ajax/phukhoa.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#phukhoa-content').html(result);
				}
			});
		}
	});

	$("#phukhoa-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#phukhoa-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".phukhoa-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/phukhoa.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#phukhoa-content').html(result);
				}
			});
		}
	});

	$('.phukhoa-tab').slick({
		dots: false,
        arrows: true,
		infinite: true,
		variableWidth: true,
	});

	// benhxahoinews
	$(".benhxahoinews-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".benhxahoinews-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#benhxahoinews-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'ajax/benhxahoinews.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#benhxahoinews-content').html(result);
				}
			});
		}
	});

	$("#benhxahoinews-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#benhxahoinews-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".benhxahoinews-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/benhxahoinews.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#benhxahoinews-content').html(result);
				}
			});
		}
	});

	$('.benhxahoinews-tab').slick({
		dots: false,
        arrows: true,
		infinite: true,
		variableWidth: true,
	});

	// benh xa hoi
	$("#bxh-tab li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#bxh-tab li").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get id current 
			$.ajax({
				url: _BASE_URL+'/ajax/benhxahoi.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id
					},
				success : function(result){
					$('#benhxahoi-ajax').html(result);
				}
			});
		}
	});

	// phathai
	$(".phathai-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".phathai-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#phathai-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'/ajax/phathai.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#phathai-content').html(result);
				}
			});
		}
	});

	$("#phathai-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#phathai-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".phathai-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/phathai.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#phathai-content').html(result);
				}
			});
		}
	});

	$('.phathai-tab').slick({
		dots: false,
        arrows: true,
		infinite: true,
		variableWidth: true,
	});

	// benhtri
	$(".benhtri-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".benhtri-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#benhtri-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'/ajax/benhtri.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#benhtri-content').html(result);
				}
			});
		}
	});

	$("#benhtri-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#benhtri-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".benhtri-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/benhtri.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#phathai-content').html(result);
				}
			});
		}
	});

	$('.benhtri-tab').slick({
		dots: false,
        arrows: true,
		infinite:false,
		variableWidth: true,
	});

	// taimuihong
	$(".taimuihong-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".taimuihong-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#taimuihong-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'/ajax/taimuihong.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#taimuihong-content').html(result);
				}
			});
		}
	});

	$("#taimuihong-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#taimuihong-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".taimuihong-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/taimuihong.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#phathai-content').html(result);
				}
			});
		}
	});

	$('.taimuihong-tab').slick({
		dots: false,
        arrows: true,
		infinite:false,
		variableWidth: true,
	});
	
	// tai mui hong
	// $("#tmh-tab li").on('click', function () {
	// 	if(!$(this).hasClass('active')){
	// 		$("#tmh-tab li").removeClass('active');
	// 		$(this).addClass('active');
	// 		let id = $(this).data('id');
	// 		$.ajax({
	// 			url: _BASE_URL+'/ajax/taimuihong.php',
	// 			type: 'POST',
	// 			dataType:"text",
	// 			data: {
	// 					id: id
	// 				},
	// 			success : function(result){
	// 				$('#tmh-ajax').html(result);
	// 			}
	// 		});
	// 	}
	// });

	// da lieu
	// $("#dalieu-tab li").on('click', function () {
	// 	if(!$(this).hasClass('active')){
	// 		$("#dalieu-tab li").removeClass('active');
	// 		$(this).addClass('active');
	// 		let id = $(this).data('id');
	// 		$.ajax({
	// 			url: _BASE_URL+'/ajax/dalieu.php',
	// 			type: 'POST',
	// 			dataType:"text",
	// 			data: {
	// 					id: id
	// 				},
	// 			success : function(result){
	// 				$('#dalieu-ajax').html(result);
	// 			}
	// 		});
	// 	}
	// });

	$(".dalieu-tab span").hover(function () {
		if (!$(this).hasClass('active')) {
			$(".dalieu-tab span").removeClass('active');
			$(this).addClass('active');
			let id = $(this).data('id');
			// get current ch
			let ch = $("#dalieu-choise li.active").data('ch');
			$.ajax({
				url: _BASE_URL+'/ajax/dalieu.php',
				type: 'POST',
				dataType:"text",
				data: {id: id,ch: ch},
				success : function(result){
					$('#dalieu-content').html(result);
				}
			});
		}
	});

	$("#dalieu-choise li").on('click', function () {
		if(!$(this).hasClass('active')){
			$("#dalieu-choise li").removeClass('active');
			$(this).addClass('active');
			let ch = $(this).data('ch');
			// get id current 
			let id = $(".dalieu-tab span.active").data('id');
			$.ajax({
				url: _BASE_URL+'/ajax/dalieu.php',
				type: 'POST',
				dataType:"text",
				data: {
						id: id,
						ch: ch	
					},
				success : function(result){
					$('#dalieu-content').html(result);
				}
			});
		}
	});

	$('.dalieu-tab').slick({
		dots: false,
        arrows: true,
		infinite: true,
		variableWidth: true,
	});
	

	//menu sibar
	$('.listcategogy_sidebar li.active').addClass('open').children('ul').show();
	$('.listcategogy_sidebar li.has-sub>a').on('click', function(){
		$(this).removeAttr('href');
		var element = $(this).parent('li');
		if (element.hasClass('open')) {
			element.removeClass('open');
			element.find('li').removeClass('open');
			element.find('ul').slideUp(200);

		}
		else {
			element.addClass('open');
			element.children('ul').slideDown(200);
			element.siblings('li').children('ul').slideUp(200);
			element.siblings('li').removeClass('open');
			element.siblings('li').find('li').removeClass('open');
			element.siblings('li').find('ul').slideUp(200);

		}
	});

	$(".shock").each(function(){
		$(this).wrap("<span class='shock_wrap'></span>");
	})
	$(".shock_wrap").append('<span class="shock_block"><span>Hình ảnh cĂ³ ná»™i dung gĂ¢y shock !! CĂ¢n nhắc trÆ°á»›c khi xem <div style="clear:both;height:7%"></div><div style="text-align:center;display:block"><a class="shock_click" href="#">Click vĂ o xem</a></div></span></span>');
	$(".shock_click").click(function(){
		$(this).parent().parent().parent().animate({"opacity":0},500);
		return false;
	});
});