views:

1101

answers:

4

I'm building a site using ASP.NET MVC, and I have partial views that use jquery to do various things. I was thinking of switching to google's ajax api and using their loader to load jquery. However, I noticed that I would no longer be able to use $(document).ready() anymore because google's loader specifies a callback google.setOnLoadCallback().

This is a little bit of a problem for me because I have $(document).ready() in various partial views because they do different things specific to themselves that I don't want the parent view to be aware of.

What I'm wondering is, can I specify multiple callbacks and just swap out the $(document).ready()'s with google.setOnLoadCallback(someUniqueCallbackFunction)?

Would that be the ideal way to handle this situation or is there something else that is preferred?

A: 

For these partial views, are you rendering them with the page or dynamicaly (e.g., through an ajax tab)?

jmarnold
In a regular page. I'm not using AJAX at this point.
Joseph
+1  A: 

I may be missing the point here but there's no clash between your usercontrols $(document).ready and google.setOnLoadCallback that I know of.

Assuming you're using google to load jquery, your code in the $(document).ready won't run until google has loaded jquery anyway.

So long as jQuery is being loaded in your masterpage, not sure what the issue is.

TreeUK
I'll try that out and see if it works. I tried using the setOnLoadCallback and $(document).ready in the same html file on the Google API Playground and it didn't like that. Maybe I'm ok with user controls, though!
Joseph
That seems to work fine. I have a Master file that uses google.load(jquery) and then later in a view I'm using $(document).ready and it's working fine!
Joseph
+2  A: 

Lets try answering your question.

Yes, you may use setOnLoadCallback in leu of $(document).ready - There is an undocumented SECOND PARAMETER (or at least, I can't find it) which specifies when to call the callback function: 1) true - on the DOM load, or 2) false - on the window load (default). The DOM event fires once all the markup has loaded (much earlier than window.load). The window load event fires after all the images and such have finished loading.

//Very similar to $(document).ready

google.setOnLoadCallback(OnLoad, true);


// Very similar to $(window).load

// Same as google.setOnLoadCallback(OnLoad, false);

google.setOnLoadCallback(OnLoad);

Yes, you may use setOnLoadCallback multiple times on a single page. This is a very important undocumented feature of the AJAX API (undocumented as of this posting). Every time you call setOnLoadCallback, it stacks up all the functions to be called once the DOM or window loads.

~Ryan Wheale

Ryan Wheale
This is what helped me. I wish this were better documented.
mdoar
A: 

I ran into the same problem. I googled have 2 google search running on one page, etc...

In the end i found this and because i wanted to have 2 panels essentially showing google search results on one page.

google.setOnLoadCallback(LoadGoogleNewsResults); google.setOnLoadCallback(LoadGoogleNewsResultsForum);

This worked for me :)

The code is on http://login.debt-line.org.uk, just click view source.

Adam Coller