Say I have this in a .jade file
doctype 5
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
script(src='/javascripts/ocanvas-2.2.2.min.js', type='text/javascript')
script(src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js")
body
script(src='/javascripts/main.js')
The main.js file is supposed to use various functions from ocanvas which is included previously.
However, in my node.js server it is unable to do so because ocanvas for some reason loads after the main.js in the terminal running the server:
GET /stylesheets/style.css 304 1ms
GET /javascripts/main.js 304 1ms
GET /javascripts/ocanvas-2.2.2.min.js 304 0ms
Why is it not loading in the sequence that is in the jade file?