Hi Guys,
I am using JQuery and I have below code.
$("#departure_city").change(function()
{
$.ajax(
{
type:'post',
url: '/specialoffers.aspx',
data: { city: $(this).val() },
success: function(result)
{
$("tab-container").find(".borderContainer").html((result).find('#tab-container').find('.borderContainer').html);
}
});
});
I want to update particular div html got from the ajax result html, I am trying with some below logic, but it is not working for me. Here I am looking to take particular div html from ajax result.
$("tab-container").find(".borderContainer").html((result).find('#tab-container').find('.borderContainer').html);
Please suggest!