I want to call pages using Ajax, and when one Ajax call completes, then other by click on button .first Ajax call works but after second ajax call not work.
$('document').ready(function(){
$('.next').click(function(){
var a=$("#cs_brief").val();
var dataObj = {cs_brief : a};
$.get('b.php',dataObj, function(data) {
$('#division').html(data);
});
});
});