View Single Post
Old 10-19-2010, 08:26 PM   PM User | #7
tz22
New to the CF scene

 
Join Date: Oct 2010
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
tz22 is an unknown quantity at this point
Code:
<script type = "text/javascript">
	var ctl = ''
	var alt = ''
	var s = ''
document.onkeydown = function(ev) {	
	var key;
	ev = ev || event;
	key = ev.keyCode;
	if (key == 17) {
		ctl = 1
	}
	if (key == 18) {
		alt = 1
	}
	if (key == 83) {
		s = 1
	}
	if(ctl+alt+s==3){
		window.open('http://www.google.com');
		ctl = ''
		alt = ''
		s = ''
	}
}
document.onkeyup = function() {
	ctl = ''
	alt = ''
	s = ''
}
</script>
Here is a way to use a key combo.
tz22 is offline   Reply With Quote