<script>
$.get("link.html", function(data) {
var data = $(data);
//do something
$("#Container").html(data);
})
<script>
how can i get html of a div from another page to current page? i used jquery load method but the scripts didn't executed.
sorry for bad English!