On 5/21/07, james_027 <[EMAIL PROTECTED]> wrote:

Wrong

The Wrong Way (will not work!)

$.get('myhtmlpage.html', myCallBack(param1, param2));



Try this:

$.get('myhtmlpage.html', function() {
   myCallBack(param1, param2);
});

Wrapping the call to myCallBack in an anonymous function should fix that
issue.

--
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com

Reply via email to