$('a').bind('click',function(){
	var url = ($(this).attr('href'));
	var cat = getURLParameter(url, 'cat');
	var typ = getURLParameter(url, 'typ');
	//calling the ajax function
	pop(cat, typ)
});

function getURLParameter(url, name) {
	return (RegExp(name + '=' + '(.+?)(&|$)').exec(url)||[,null])[1];
}

'javascript, jquery' 카테고리의 다른 글

창 크기에 맞게 리사이징  (0) 2015.09.25
jquery - ajax 파일 업로드  (0) 2015.09.19
url 주소를 클립보드로 복사하기  (0) 2015.09.16
엔터(enter) 입력시 폼(form) 전송  (0) 2015.09.01
ajax 파일 전송  (0) 2015.08.31
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,