You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
388 B

$(function(){
var $box = $('#priceform'),
$form = $box.find('form'),
$input = $form.find('input[type=text]'),
$hp = $("#hidden_price");
$input.on('focus', function() {
$box.addClass('focus');
});
$(document).on("click", function(e) {
if ($(e.target).parents("#priceform").length == 0) {
$box.removeClass('focus');
}
});
})