$('.paggingcontainer a').click(function() { var curPage = $(this).html(); $('.paggingcontainer a').removeClass('selected'); $(this).addClass('selected'); getAnnouncementListing(curPage); }); function getAnnouncementListing(curPage){ $.ajax({ url: '/content/mas/my/en/site/mh370/jcr:content/content_left/announcementlisting_.getannouncementListing.html', type: 'GET', dataType: 'text/html', data : { curpage : curPage }, complete: function(data){ $('.articlecontainer').html(data.responseText); }, error: function(){ } }); }