I have a contentEditable Div and I want remove any formatting especially for copy and paste text.
With Jquery you can use .text() method, so, when blur for example you can replace the content with the text content
$("#element").blur(function(e) { $(this).html($(this).text()); });