> NO, container is not an url, its containing a vidows i am fetching
> from the flicks. so i just want to refresh this div on the click
load() takes a URL -- so you need to reread the docs for load().
> I am not sure what to put here
> "set('html',...)."
Did you read the docs and examples for set()?
You will find that there are a number of different convenience methods
to go about an XHR update of the (inner) HTML of an element, all of
them wrapping the same underlying method. You should first know how to
do it manually, that is, not from a remote server but from a local
string.
-- Sandy