<script>
$(document).ready(function () {
$("#back-top").hide();
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 0) {
$('#back-top').fadeIn();
} else {
$('#back-top').fadeOut();
}
});
$('#back-top a').click(function () {
$('body,html').animate({
scrollTop: 0
}, 700);
return false;
});
});
});
</script>
var $target = $(e.target);
if ($target.hasClass('menu-item-search') || $target.hasClass('glyphicon-remove')) {
$('.jqeury-test-form').slideToggle(200);
} else if(!$target.hasClass('jqeury-test-form')) {
$('.jqeury-test-form').slideUp(200)
}
});