> > Hello,
> > Have a JSP page consisting of several DIVs. I want to refresh dynamic
[quoted text clipped - 12 lines]
> --
> Ckhttp://www.gfour.net
Frames, what's wrong with good old fashioned frames and what's with
the obsession with AJAX. 99.999% of what I've seen people use AJAX
for could be more easily be implemented using frames.
Just my two cents worth.
Oliver Wong - 23 Mar 2007 23:10 GMT
>> > Hello,
>> > Have a JSP page consisting of several DIVs. I want to refresh dynamic
[quoted text clipped - 15 lines]
> the obsession with AJAX. 99.999% of what I've seen people use AJAX
> for could be more easily be implemented using frames.
Really? For me, maybe 1% of what I've seen people use AJAX for could
be more easily be implemented using frames (and that's being generous)...
Frames are great for what they're designed for (breaking up the viewing
window into smaller viewing area, each one capable of displaying its own
HTML document), and AJAX is great for what its designed for (updating the
DOM without a page refresh). There's very little overlap between these two
usages.
Perhaps you're thinking of those JavaScript snippets to have a
navigation pane "stay onscreen" even when the user scrolls the main
viewing area up and down? I don't consider that to be a form of AJAX,
since there's no asynchronous query being made to the host server, and
there's no XML involved.
- Oliver