Closed rodfersou closed 5 years ago
This change fix the escape of characters into javascript code: before:
$('#demo').html( '<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\' class=\'display\' id=\'example\'></table>' );
after:
$('#demo').html( '<table cellpadding=\'0\' cellspacing=\'0\' border=\'0\' class=\'display\' id=\'example\'></table>' );
This change fix the escape of characters into javascript code: before:
after: