See
http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype
The callback function you provide to .get() is called with a first parameter
'data' (you can actually give it any name you please, the documentation
calls it data). This contains the result of the get, in your case, a web
page.
function getPage(data) {
var newclickrate = $("#clickrate", data)
//or
var newclickrate = $(data).find("#clickrate")
// do something with newclickrate, like
$("#clickrate").replaceWith(newclickrate);
}
- Richard
On Wed, Dec 10, 2008 at 4:03 PM, Max <[EMAIL PROTECTED]> wrote:
>
> oh, yea thanks :)....
>
> now if i could just figure out how to pick out each piece of the
> returned page and load
> them into each div....
>
>