I want the source code of an HTML page (1.html) to be used in another page (2.html). Furthermore, I want to perform operations on it in 2.html
1.html
2.html
I don't understand whatyou mean that you must make modifications, but you could simply load the second page through AJAX
var url ="1.html"; $.ajax({ url: url, dataType: 'html' success: function(data){ //do something with data, which is the page 1.html } });