Показать сообщение отдельно
  #7 (permalink)  
Старый 07.07.2010, 22:39
Профессор
Отправить личное сообщение для exec Посмотреть профиль Найти все сообщения от exec
 
Регистрация: 21.01.2010
Сообщений: 1,022

$(document).ready(function(){
	$('.artmenu').find('a').click(function(){
		var obj = this;
		$('.article').slideUp("slow", function(){
			$.ajax({
			url: 'content.php', 
			type: "POST",
			data: ({hui : obj.href.split(location.hostname+'/#')}),
			success:function(msg){
					$('.article').html(msg);
					$('.article').slideDown("slow");
				}
			});
		});
	})
});
Ответить с цитированием