Skip to content

Instantly share code, notes, and snippets.

@hoganlong
Created February 5, 2010 02:36
Show Gist options
  • Save hoganlong/295432 to your computer and use it in GitHub Desktop.
Save hoganlong/295432 to your computer and use it in GitHub Desktop.
var utilities = function() {
var util = this;
util.log = function(msg){
alert(msg);
};
var p = document.createElement('p');
p.innerHTML = '<input type="checkbox" onclick="util.log(\'hey\')" value="1">Check me'; // this part is a legacy code and I have no control over to rewrite it as HTMLObjectElement way
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment