Created
January 3, 2015 00:53
-
-
Save pam-/6f91a685b5fe830cd4a6 to your computer and use it in GitHub Desktop.
contentEditable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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