<script type="text/javascript">
$.get("url",function(data){
$('#div').html(data);
});
</script>
after using this function data
returns below:
<div id="info"></div>
<script type="text/javascript">
$.get("urlanother",function(data){
$('#info').html(data);
});
</script>
My problem is second get
operation not work.
How to do it?