Basic function for jsonp (json with callback) calls from javascrip

[ permalink ] [ download ]
function json(url, querystring)
{
  var jstag=document.createElement("script");
  jstag.setAttribute("type", "text/javascript");
  jstag.setAttribute("src", url+'?'+querystring);
  document.getElementsByTagName("head")[0].appendChild(jstag);
}
hits counter