부트스트랩3 한글 번역페이지 - http://bootstrapk.com/BS3
w3 Schools bootstrap - http://www.w3schools.com/bootstrap/default.asp
블로그 이미지

디츠

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

,
<!doctype html>
<html lang="ko">
	<head>
	<meta charset="utf-8">
	<title>jQuery Tip | Check All</title>
	<script src="//code.jquery.com/jquery-1.11.0.js"></script>
	<script>
		$( document ).ready( function() {
			$( '.check-all' ).click( function() {
				$( '.ab' ).prop( 'checked', this.checked );
			} );
		} );
	</script>
	</head>
<body>
	<form>
		<p><input type="checkbox" name="all" class="check-all"> <label>Check ALL</label></p>
		<hr>
		<p><input type="checkbox" name="cb1" class="ab"> <label>Checkbox 1</label></p>
		<p><input type="checkbox" name="cb2" class="ab"> <label>Checkbox 2</label></p>
		<p><input type="checkbox" name="cb3" class="ab"> <label>Checkbox 3</label></p>
		<p><input type="checkbox" name="cb4" class="ab"> <label>Checkbox 4</label></p>
	</form>
</body>
</html>

 

출처 : http://www.cmsfactory.net/node/10552

블로그 이미지

디츠

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

,

* jquery.cookie.js

https://github.com/carhartl/jquery-cookie

jquery.cookie.js
다운로드

 

* request.html

<script src="jquery.js"></script>
<script src="jquery.cookie.js"></script>

<script>
$(function() {
	$.removeCookie('popup', {path:'/'}); // 쿠키삭제 경우
	if($.cookie("popup") == "ok") {
		// 쿠키가 있을때 처리내용
	} else {
		window.open('popup.html');
	}
});
</script>

* popup.html

<script src="jquery.js"></script>
<script src="jquery.cookie.js"></script>

<script>
$(document).ready(function() {
	$("#popup").click(function() {
		if($("#popup").is(":checked") == true) {
			$.cookie('popup','ok',{expires:1,path:'/',domain:'www.test.com',secure:false}); // 브라우저에 따라 안될경우 domain과 secure 부분 삭제
		}
	});
});
</script>

하루동안 창 열지않기 <input type="checkbox" id="popup" />
블로그 이미지

디츠

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

,

* script

<script src="jquery-1.11.1.js"></script>
<script src="jquery-ui.js"></script>

* style

.ui-dialog > .ui-widget-header { background:blue; font-size:12px; }
.dialog { font-size:10px; }

* jquery

$(document).ready(function() {
	$("#divlocationinfo").dialog( {
		modal: true,
		title: "subject", // 제목
		width : "750px", // 넓이
		resizable: false, // 리사이즈
		closeOnEscape: false, // esc 작동여부
		hide: 'slide', // 없어질때 효과
		show: 'slide', // 나타날때 효과
	});
});

* html

<div id="dialog">
	<p>test</p>
</div>
http://api.jqueryui.com/dialog/
블로그 이미지

디츠

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

,

* main.html

<script>
	window.open('popup.html', '_blank', 'width=100, height=100');
</script>

* popup.html 

$(document).ready(function () {
	window.moveTo(0, 0);
    
	var w = $(document).width();
	var h = $(document).height();
	window.resizeTo(w, h);
 
	var mw = window.outerWidth - window.innerWidth;
	var mh = window.outerHeight - window.innerHeight;
	window.resizeBy(mw, mh);
 
	if (isIEVer() < 9) {            
		mw = $(document).outerWidth() - $(window).width();
		mh = $(document).outerHeight() - $(window).height();               
		window.resizeBy(mw, mh);
	}
});

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

$.cookie / $.removeCookie - 쿠키 제어하기  (0) 2014.10.11
팝업 레이어 설정하기  (0) 2014.10.11
이미지 변경하기  (0) 2014.10.10
ajax - ajaxStart, ajaxStop  (0) 2014.10.08
jquery - ajax  (0) 2014.10.07
블로그 이미지

디츠

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

,

문서 여백 없애기

css, html 2014. 10. 11. 21:35
<style type="text/css">
<!--
body {
	margin: 0;
	padding: 0;
}
//-->
</style>
블로그 이미지

디츠

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

,