Архив

Архив Апрель 2016
6 апреля 2016 Нет комментариев
ls -f . | wc -l
Categories: Unix Tags:
5 апреля 2016 Нет комментариев

Для $_GET

$(".add_to_cart_form").submit(function(){
	$form=$(this);
	$.fancybox({
		'title':"form submission",
		'href':$form.attr("action")+"?"+$form.serialize(),
		'type':'ajax'
	});
	return false;
});

Для $_POST

$(".details_form").submit(function(){
	$form=$(this);
	$.ajax({
		url:$form.attr("action"),
		type:'POST',
		dataType:'html',
		data:$form.serialize(),
		beforeSend:function(){$.fancybox.showLoading();},
		success:function(data,textStatus,xhr){
			$.fancybox({
				'content':data
			});
		},
		error:function(xhr,textStatus,errorThrown){
			alert("An error occurred.");
		},
		complete:function(){$.fancybox.hideLoading();}
	});
	return false;
});

http://stackoverflow.com/questions/6006201/how-do-i-submit-the-data-of-a-form-to-an-iframe-in-fancybox

Categories: Javascript Tags:
1 апреля 2016 Нет комментариев
$('#top_menu > div > ul > li > span').click(function(){
	$('#top_menu ul li').not($(this).parent()).removeClass('hovered');
	$(this).parent().toggleClass('hovered');
});

В примере для открытия подменю по клику.
li.hovered ul{ будет показан

Categories: Javascript Tags:
1 апреля 2016 Нет комментариев
$('.contacts-order-btn').on('click',function(){
	$('#register-online').modal('show');
});
$('#register-online').on('shown.bs.modal',function(){
	$("input[name=phone]").mask("+7 (999) 999-99-99");
});
Categories: Javascript Tags: