javascript - How to get source code of html page -
this link example of edit source code:
http://neokoenig.github.io/jquery-gridmanager/demo/tinymce.html
the button value </>
.
he code html if changes content of grid.
how source code html using javascript or jquery?
thanks.
you can use html method jquery, i.e whole page html this:
$( document ).ready(function() { console.log($("html").html()); })
Comments
Post a Comment