Skip to content

Instantly share code, notes, and snippets.

@weivall
weivall / gist:2366413
Created April 12, 2012 10:40
<!--[if lt IE 7 ]><html lang=en class="ie6"><![endif]-->
<!--[if lt IE 7 ]><html lang=en class="ie6"><![endif]-->
<!--[if IE 7 ]><html lang=en class="ie7"><![endif]-->
<!--[if IE 8 ]><html lang=en class="ie8"><![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang=en> <!--<![endif]-->
@weivall
weivall / gist:1941425
Created February 29, 2012 15:11
simulateClick
function simulateClick() {
var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, window,
0, 0, 0, 0, 0, false, false, false, false, 0, null);
var cb = document.getElementById("checkbox");
var canceled = !cb.dispatchEvent(evt);
if(canceled) {
// A handler called preventDefault
alert("canceled");
} else {