Skip to main content

Trying to load an API and a JS file dynamically


I am trying to load Skyscanner API dynamically but it doesn't seem to work. I tried every possible way I could think of and all it happens the content disappears.



I tried console.log which gives no results; I tried elements from chrome's developers tools and while all the content's css remains the same, still the content disappears (I thought it could be adding display:none on the html/body sort of). I tried all Google's asynch tricks, yet again blank page. I tried all js plugins for async loading with still the same results.



Skyscanner's API documentation is poor and while they offer a callback it doesn't work the way google's API's callback do.



Example: http://jsfiddle.net/7TWYC/



Example with loading API in head section: http://jsfiddle.net/s2HkR/



So how can I load the api on button click or async? Without the file being in the HEAD section. If there is a way to prevent the document.write to make the page blank or any other way. I wouldn't mind using plain js, jQuery or PHP.



EDIT:



I've set a bounty to 250 ontop of the 50 I had previously.



Orlando Leite answered a really close idea on how to make this asynch api load although some features doesn't work such as selecting dates and I am not able to set styling.



I am looking for an answer of which I will be able to use all the features so that it works as it would work if it was loading on load.



Here is the updated fiddle by Orlando: http://jsfiddle.net/cxysA/12/



-



EDIT 2 ON Gijs ANSWER:



Gijs mentioned two links onto overwriting document.write. That sounds an awesome idea but I think it is not possible to accomplish what I am trying.



I used John's Resig way to prevent document.write of which can be found here: http://ejohn.org/blog/xhtml-documentwrite-and-adsense/



When I used this method, I load the API successfuly but the snippets.js file is not loading at all.



Fiddle: http://jsfiddle.net/9HX7N/


Source: Tips4allCCNA FINAL EXAM

Comments

  1. For problematic cases like this, you can just overwrite document.write. Hacky as hell, but it works and you get to decide where all the content goes. See eg. this blogpost by John Resig. This ignores IE, but with a bit of work the trick works in IE as well, see eg. this blogpost.

    So, I'd suggest overwriting document.write with your own function, batch up the output where necessary, and put it where you like (eg. in a div at the bottom of your <body>'). That should prevent the script from nuking your page's content.

    Edit: OK, so I had/took some time to look into this script. For future reference, use something like http://jsbeautifier.org/ to investigate third-party scripts. Much easier to read that way. Fortunately, there is barely any obfuscation/minification at all, and so you have a supplement for their API documentation (which I was unable to find, by the way -- I only found 'code wizards', which I had no interest in).

    Here's an almost-working example: http://jsfiddle.net/a8q2s/1/

    Here's the steps I took:


    override document.write. This needs to happen before you load the initial script. Your replacement function should append their string of code into the DOM. Don't call the old document.write, that'll just get you errors and won't do what you want anyway. In this case you're lucky because all the content is in a single document.write call (check the source of the initial script). If this weren't the case, you'd have to batch everything up until the HTML they'd given you was valid and/or you were sure there was nothing else coming.
    load the initial script on the button click with jQuery's $.getScript or equivalent. Pass a callback function (I used a named function reference for clarity, but you can inline it if you prefer).
    Tell Skyscanner to load the module.


    Edit #2: Hah, they have an API (skyscanner.loadAndWait) for getting a callback once their script has loaded. Using that works:

    http://jsfiddle.net/a8q2s/3/

    (note: this still seems to use a timeout loop internally)

    ReplyDelete
  2. I belive what you want is it:

    function loadSkyscanner()
    {
    function loaded()
    {
    t.skyscanner.load('snippets', '1', {'nocss' : true});

    var snippet = new t.skyscanner.snippets.SearchPanelControl();
    snippet.setCurrency('GBP');
    snippet.setDeparture('uk');
    snippet.draw(document.getElementById('snippet_searchpanel'));
    }

    var t = document.getElementById('sky_loader').contentWindow;
    var head = t.document.getElementsByTagName('head')[0];
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.onreadystatechange= function() {
    if(this.readyState == 'complete') loaded();
    }
    script.onload= loaded;
    script.src= 'http://api.skyscanner.net/api.ashx?key=PUT_HERE_YOUR_SKYSCANNER_API_KEY';
    head.appendChild(script);
    }

    $("button").click(function(e)
    {
    loadSkyscanner();
    });


    It's load skyscanner in iframe#sky_loader, after call loaded function to create the SearchPanelControl. But in the end, snippet draws in the main document. It's really a bizarre workaround, but it works.

    The only restriction is, you need a iframe. But you can hide it using display:none.

    A working example

    EDIT

    Sorry guy, I didn't see it. Now we can see how awful is skyscanner API. It puts two divs to make the autocomplete, but not relative to the element you call to draw, but the document.
    When a script is loaded in a iframe, document is the iframe document.

    There is a solution, but I don't recommend, is really a workaround:

    function loadSkyscanner()
    {
    var t;
    this.skyscanner;
    var iframe = $("<iframe id=\"sky_loader\" src=\"http://fiddle.jshell.net/orlleite/2TqDu/6/show/\"></iframe>");

    function realWorkaround()
    {
    var tbody = t.document.getElementsByTagName("body")[0];
    var body = document.getElementsByTagName("body")[0];

    while( tbody.children.length != 0 )
    {
    var temp = tbody.children[0];
    tbody.removeChild( temp );
    body.appendChild( temp );
    }
    }

    function snippetLoaded()
    {
    skyscanner = t.skyscanner;

    var snippet = new skyscanner.snippets.SearchPanelControl();
    snippet.setCurrency('GBP');
    snippet.setDeparture('uk');
    snippet.draw(document.getElementById('snippet_searchpanel'));

    setTimeout( realWorkaround, 2000 );
    }

    var loaded = function()
    {
    console.log( "loaded" );
    t = document.getElementById('sky_loader').contentWindow;

    t.onLoadSnippets( snippetLoaded );
    }

    $("body").append(iframe);
    iframe.load(loaded);
    }

    $("button").click(function(e)
    {
    loadSkyscanner();
    });


    Load a iframe with another html who loads and callback when the snippet is loaded. After loaded create the snippet where you want and after set a timeout because we can't know when the SearchPanelControl is loaded. This realWorkaround move the autocomplete divs to the main document.

    You can see a work example here

    The iframe loaded is this

    EDIT

    Fixed the bug you found and updated the link.

    the for loop has gone and added a while, works better now.

    while( tbody.children.length != 0 )
    {
    var temp = tbody.children[0];
    tbody.removeChild( temp );
    body.appendChild( temp );
    }

    ReplyDelete
  3. In the skyrunner.js file they are using document.write to make the page blank on load call back... So here are some consequences in your scenario..


    This is making page blank when you click on button.
    So, it removes everything from page even 'jQuery.js' that is why call back is not working.. i.e main function is cannot be invoked as this is written using jQuery.
    And you have missed a target 'div' tag with id = map(according to the code). Actually this is the target where map loads.
    Another thing i have observed is maps is not actually a div in current context, that is maps api to load.


    Here you must go with the Old school approach, That is.. You should include your skyrunner.js file at the top of the head content.

    So try downloading that file and include in head tag.

    Thanks

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex