Resize event
by djarekg
HTML
<div id="content" contenteditable="true">
</div>
JavaScript
alert("ready...");
$("#content").on("resize", function() {
alert("Hello World!!!");
});
by djarekg
<div id="content" contenteditable="true">
</div>
alert("ready...");
$("#content").on("resize", function() {
alert("Hello World!!!");
});