Skip to content

Instantly share code, notes, and snippets.

@dg
Created October 8, 2014 20:31
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 dg/c237aae31147a5e589d1 to your computer and use it in GitHub Desktop.
Save dg/c237aae31147a5e589d1 to your computer and use it in GitHub Desktop.
Autoselect
<td><span class=select>david@example.com</span></td>
<script>
$('.select').click(function(){
var range = document.createRange();
range.selectNodeContents(this);
window.getSelection().addRange(range);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment