Tag Archives: jQuery

Bing Map v7 Address Query using jQuery

How to initialise Bing map using an street address query. First reference the Bing library, keeping it as an external reference. They changed one of their JavaScript urls once and 404ed on me. There are references for both SSL and … Continue reading

Posted in Web Related | Tagged , , , , , , | Leave a comment

Writing better performing JavaScript (with jQuery)

1.  Detach the element from the DOM to do funky stuff with it var child = $(‘#chilID’); var parent = child.parent(); child.detach(); child.doLotsOfStuff(); parent.append(child);

Posted in Web Related | Tagged , | Leave a comment