I want to load the Google News API without using google.load. which menas I need this as a simple script block.
E-g Maps can be loaded via
First Approach:
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
google.load("maps", "2");
OR
Second Approach: <script src="https://maps.googleapis.com/maps/api/js?&sensor=false" type="text/javascript"></script>
In the same way google news API can be loaded via
First Approach:
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
google.load('search', '1');
Second Approach: I dont know, thats the question
So My question is how do I load a Google News API without google.load,