I test it using pagespeed, google told that i have render bocking javascript in above the fold.
http://developers.google.com/speed/pagespeed/insights/
they suggest to change javascript code name to remove render blocking javascript
where oxwall put their javascipt? maybe in here but im not sure
// ONLOAD JS
$jsData .= '<script type="text/javascript">' . PHP_EOL . '$(function () {' . PHP_EOL;
ksort($this->onloadJavaScript['items']);
foreach ( $this->onloadJavaScript['items'] as $priority => $scripts )
{
foreach ( $scripts as $script )
{
$jsData .= '(function(_scope) {' . $script . '})(window);' . PHP_EOL;
}
}
$jsData .= PHP_EOL . '});' . PHP_EOL . '</script>';