If you put alert(data) in the function, what exactly does it show?

Also you could try specifying the data type like:

$.post("hotline.aspx", function(data) {  $("#load").html(data); },
"html");


On Feb 17, 3:32 pm, "r1u0...@gmail.com" <r1u0...@gmail.com> wrote:
> Hi,
>
> I've got problem with loading new page through ajax like that:
>  $.post("hotline.aspx", function(data) {  $("#load").html(data); });
> I was also trying with functions get, $.ajax, load, unfortunately it's
> not working. It's loading html correctly, but it seems like it's not
> executed or interpreted.
> I'm loading through that page with jquery code (tabs) and it's totally
> not working.
>
> Should I fire some additional event after load, that this code will be
> interpreted correctly? I would like to achieve similar loading like
> it's made in tabs ajax loading (http://jqueryui.com/demos/tabs/).
>
> Anyone knows solution for that?
>
> Cheers
>
> Radek

Reply via email to