JSFiddle - React, Tailwind, and code Playground

by royshoa

HTML

<!DOCTYPE html>
<html>
<head>

	<script type='text/javascript' src='http://enter-system.com/site/include/newfeel/website3/ManageByDrag/jQuery/jquery-1.8.3.min.js'></script>
	<script type='text/javascript' src='http://enter-system.com/site/include/newfeel/website3/ManageByDrag/jquery-ui-1.9.1.custom/js/jquery-ui-1.9.1.custom.min.js?'></script>
	<script type='text/javascript' src='http://cdn.jsdelivr.net/ckeditor/4.0/ckeditor.js'></script>
	

	<script type='text/javascript'>
		
		$(function(){
			$("#myDiv").draggable();
				
			$("#myDiv").click(function(event){
				$(this).focus();
			});

			CKEDITOR.inline("myDiv");
		});

	</script>
</head>

<body>
	<div id="myDiv" contenteditable="true">Text Text Text Text Text......</div>
</body>

</html>