1. dialogBox đơn giản
			
			$('#btn-simple').click(function(){
				$('#simple-dialogBox').dialogBox({
					content: 'Nội dung dialog: image,html file'
				});
			})
			
		
2. dialogBox tiêu chuẩn
			
			$('#btn-stantard').click(function(){
				$('#stantard-dialogBox').dialogBox({
					title: 'title text',
					hasClose: true,
					content: 'Nội dung dialog: text,image,html file'
				});
			})
			
		
3. dialogBox kích thước tùy chỉnh
			
			$('#btn-custom-size').click(function(){
				$('#custom-size-dialogBox').dialogBox({
					width: 500,
					height: 300,
					title: 'title text',
					hasClose: true,
					content: '<ul><li>Support custom dialog box style.</li><li>on the high version of brwosers support a series of animation effect</li><li>Support adaptive popup content size</li><li>Support the standard and the modal dialog box</li><li>Support IE7+,Firefox3+,Chrome and Oprea</li></ul>'
				});
			})
			
		
4. dialogBox tự động đóng
			
			$('#btn-auto-close').click(function(){
				$('#auto-close-dialogBox').dialogBox({
					autoHide: true,
					time: 3000,
					title: 'title text',
					content: 'Nội dung dialog: text,image,html file'
				});
			})
			
		
5. dialogBox hiệu ứng
			
			$('#btn-mask').click(function(){
				$('#mask-dialogBox').dialogBox({
					hasClose: true,
					hasMask: true,
					title: 'title text',
					content: 'Nội dung dialog: text,image,html file'
				});
			})
			
		
6. dialogBox confirm
			
			$('#btn-btn').click(function(){
				$('#btn-dialogBox').dialogBox({
					hasClose: true,
					hasBtn: true,
					confirmValue: 'OK',
					confirm: function(){
						alert('Share by dainguyen.info');
					},
					cancelValue: 'CANCEL',
					title: 'dialogbox',
					content: 'Nội dung dialog: text,image,html file'
				});
			})
			
		
8. dialogBox hiệu ứng
			
			$('#btn-btn').click(function(){
				$('#btn-dialogBox').dialogBox({
					width: 500,
					height: 260,
					autoHide: true,
					time: 3000,
					effect: 'flip-horizontal',
					title: 'dialogbox',
					content: 'Nội dung dialog: text,image,html file'
				});
			})
			
		
9. dialogBox kiểu mẫu
			
			$('#btn-type').click(function(){
				$('#type-dialogBox').dialogBox({
					type: 'correct'  //three type:'normal'(default),'correct','error',
					width: 300,
					height: 200,
					hasMask: true,
					autoHide: true,
					time: 3000,
					effect: 'fall',
					title: 'dialogbox',
					content: 'Nội dung dialog: text,image,html file'
				});
			})
			
		

Support: Chrome, CocCoc, Opera, Firefox, IE8,...

Contact: Đại Nguyễn