프로그램/script

jquery window open library - codylindley popupWindow

mulderu 2012. 12. 16. 17:46

 html   코딩중 팝업윈도을 사용하는경우가 다반사 입니다.

이럴경우 아주 깔끔하게 팝업윈도우를 띄울수 있는 라이브러리   jquery.popupWindow.js 를 소개 합니다.

사용해보니... 아주 만족 스럽습니다.


http://swip.codylindley.com/popupWindowDemo.html


아래가 사용가능한 옵션 입니다.

$.fn.popupWindow.defaultSettings = {
			centerBrowser:0, // center window over browser window? {1 (YES) or 0 (NO)}. overrides top and left
			centerScreen:0, // center window over entire screen? {1 (YES) or 0 (NO)}. overrides top and left
			height:500, // sets the height in pixels of the window.
			left:0, // left position when the window appears.
			location:0, // determines whether the address bar is displayed {1 (YES) or 0 (NO)}.
			menubar:0, // determines whether the menu bar is displayed {1 (YES) or 0 (NO)}.
			resizable:0, // whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
			scrollbars:0, // determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
			status:0, // whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
			width:500, // sets the width in pixels of the window.
			windowName:null, // name of window set from the name attribute of the element that invokes the click
			windowURL:null, // url used for the popup
			top:0, // top position when the window appears.
			toolbar:0 // determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
		};


간단한 사용 예제

open popup