I am currently in the process of converting frames to div elements. My approach involves using jQuery's load()
method, but I have encountered an error that has me stumped. The code snippet below is where the issue resides. Any assistance would be greatly appreciated.
$('#abc').load('https://www.google.co.in/');
#abc {
width: 300px;
height: 300px;
border: 1px solid red;
overflow: auto;
}
<div id="abc"></div>