Dear All, I am using the following jQuery code to fill my DIV in the ASPX page
var div = $("#divPrice");
div.fadeOut('slow',function(){
div.load("../Lib/handlers/GetPrice.aspx?answers="+queryValues+"&item="+modelId,{ symbol: $("#txtSymbol" ).val() },function()
{
$(this).fadeIn('slow');
});
});
$("#divBtns").fadeIn('slow');
This works fine. In Get price.aspx
, it will return a HTML and it will be loaded in the div.
Now i want to return another number along with this HTML to my javascript. How can i do that?