[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread Hernando Gisinger
Is for html only, no javascript is run. 2009/2/17 r1u0...@gmail.com > > It is showing correct html, exactly which I'm expecting, but it seems > it's not executed. I was also trying to specify type of transmission > for html, but it's not working. > > www.w3.org/TR/xhtml1/DTD/xhtml1-transitional

[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread r1u0...@gmail.com
It is showing correct html, exactly which I'm expecting, but it seems it's not executed. I was also trying to specify type of transmission for html, but it's not working. http://www.w3.org/1999/xhtml";> $(function() { // Tabs $('#

[jQuery] Re: Problem with loading page through ajax

2009-02-17 Thread Beres Botond
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" wrote: > Hi, > > I've got problem with loading new page thro