Skip to content

Instantly share code, notes, and snippets.

@kurrik
Created October 8, 2012 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurrik/3853672 to your computer and use it in GitHub Desktop.
Save kurrik/3853672 to your computer and use it in GitHub Desktop.
Insert a time input into Twitter
document.body.appendChild(function() { var e = document.createElement("input"); e.type="time"; e.style.position="absolute"; e.style.top="0px"; e.style.left="0px"; e.style.zIndex="1000"; return e; }())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment