Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It's simple but I can't do it. I can do it in normal way in a index.html, but I need to add and run that code dynamically. I'm trying to copy paste the example from Drive SDK Page https://developers.google.com/drive/quickstart with jQuery:

jQuery(document).ready(function(){

  // APPEND THE INPUT FROM THE EXAMPLE CODE
  jQuery('body').append('<input type="file" id="filePicker" style="visibility: hidden" />');

  / ** CONTINUE THE SDK EXAMPLE CODE **/
  var CLIENT_ID = 'XXXXXXX.apps.googleusercontent.com';
  var SCOPES = 'https://www.googleapis.com/auth/drive';
  function handleClientLoad() {
    window.setTimeout(checkAuth, 1);
  }
  [...]
  / ** FINISH THE EXAMPLE CODE **/

  // APPEND THE SCRIPT FROM EXAMPLE CODE
  jQuery('head').append('<script type="text/javascript" src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>');
});

Will it ever work that way ? Thanks!

share|improve this question
Is the picker library ever getting loaded? – Ali Afshar Sep 19 '12 at 15:35
The input is appended to body but the script tag is not to the head – gabrielhpugliese Sep 19 '12 at 16:24
Used jQuery.getScript() and it worked. – gabrielhpugliese Sep 20 '12 at 17:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.