Skip to content

Instantly share code, notes, and snippets.

View MyXoToD's full-sized avatar
👽

Max MyXoToD

👽
View GitHub Profile
$(document).on('submit', 'form', function (e) {
var text = $('textarea').val();
var tmp = $('<div></div>');
// Validate
tmp.html(text);
text = tmp.text();
// Let the magic happen...
});