[jQuery] Re: Load External an DIV within the same DIV.. without tabs

2009-03-01 Thread mkmanning
You can use the new live function http://docs.jquery.com/Events/live#typefn or you can just bind a click event on a containing div and use event delegation by getting the target: //your ajax content here $('#container').click(function(e){ e = $(e.target); if(e.is('a')){

[jQuery] Re: Load External an DIV within the same DIV.. without tabs

2009-03-01 Thread johhnnyboy
http://maxblog.me/ajaxify/demo.php On 1 mrt, 18:03, "Erik R. Peterson" wrote: > Without using TABS, can I place links inside a DIV and replace the   > same DIV with external content from another DIV? > > I'm trying to achieve the effect found in this link using iFrames, but   > I DON'T want to u