I'm trying to get a DIV
from this page .
The DIV
is named .similar-artists
. I want to play in DIV
called #rock
, but nothing works. Below the code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script><script>$(document).ready(function(){$("#rock").load("http://pipocaplayfm.com/artist/5216/Calvin+Harris .similar-artists ");
});
</script>
</head>
<body>
<div id="rock">
</div>
</body>
</html>