HEX
Server: nginx/1.24.0
System: Linux webserver 6.8.0-87-generic #88-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 09:28:41 UTC 2025 x86_64
User: wpuser (1002)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /opt/wpsites/datacloudnow.com/wp-content/tw/hiBox全能信箱_files/key.js.download
jQuery(function($) {

// QWERTY Text Input
	// The bottom of this file is where the autocomplete extension is added
	// ********************
	
	// QWERTY username
	// ********************
	$('#username').keyboard({
		openOn   : null,
		autoAccept : true,
		layout   : 'international',
		display : {
			'accept' : '確認',
			'shift'  : '大小寫切換',
			'cancel' : '取消',
			'alt'   : '符號切換'
		}
	});
	$('#uname').click(function(){
		$('#username').getkeyboard().reveal();
	});
	// since IE adds an overlay behind the input to prevent clicking in other inputs (the keyboard may not automatically open on focus... silly IE bug)
	// We can remove the overlay (transparent) if desired using this code:
	$('#username').bind('visible.keyboard', function(e, keyboard, el){
	 $('.ui-keyboard-overlay').remove(); // remove overlay because clicking on it will close the keyboard... we set "openOn" to null to prevent closing.
	});
	
	

	// QWERTY Password
	// ********************
	$('#password').keyboard({
		openOn   : null,
		autoAccept : true,
		layout   : 'international',
		display : {
			'accept' : '確認',
			'shift'  : '大小寫切換',
			'cancel' : '取消',
			'alt'   : '符號切換'
		}
	});
	$('#passwd').click(function(){
		$('#password').getkeyboard().reveal();
	});
	// since IE adds an overlay behind the input to prevent clicking in other inputs (the keyboard may not automatically open on focus... silly IE bug)
	// We can remove the overlay (transparent) if desired using this code:
	$('#password').bind('visible.keyboard', function(e, keyboard, el){
	 $('.ui-keyboard-overlay').remove(); // remove overlay because clicking on it will close the keyboard... we set "openOn" to null to prevent closing.
	});
});