Skip to content

Instantly share code, notes, and snippets.

@pam-
Created January 3, 2015 00:53
Show Gist options
  • Save pam-/6f91a685b5fe830cd4a6 to your computer and use it in GitHub Desktop.
Save pam-/6f91a685b5fe830cd4a6 to your computer and use it in GitHub Desktop.
contentEditable
<section class="new-question">
<div class="editable" contenteditable="true">
<p>Type text here</p>
<code> Enter code snippet here </code>
</div>
<div class="preview"></div>
</section>
$('.questions.new').ready(function(){
$('.editable').on('keyup', function(){
$('.preview').html('<p>' + $(this).html() + '</p>');
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment