chippox Newbie Joined Jun 13, 2018 Messages 40 Reaction score 9 Aug 10, 2018 #1 At javascript can i get the source code of a webpage ? If it is possible how can i do ? Thanks for helping.
At javascript can i get the source code of a webpage ? If it is possible how can i do ? Thanks for helping.
A Ashraf09 Newbie Joined Jun 29, 2013 Messages 41 Reaction score 7 Nov 12, 2018 #2 Yes easy! HTML: <script> $.get("PathToPage", function(result) { alert(result) //... }); </script> source code is the HTML: result variable
Yes easy! HTML: <script> $.get("PathToPage", function(result) { alert(result) //... }); </script> source code is the HTML: result variable