I'm trying to do = yield :javascript after an javascript include
so i have in html i have something like this:
<body>
<!-- my actual = yield :javascript of javascript calling my js codes -->
<script type="text/javascript">//my-js-code</script>
<!-- javascript include tag that contains jQuery -->
<script type="text/javascript" src="path/to/jquery"></script>
</body>
So in my index.html.haml my yield of javascript needs to be placed after this include of jQuery, the problem is that i dont have access to this include of jquery, i need something like this: "select this yield of javascript and put after the script tag that contains and id, for example"
Someone can help?
Obs: i'm using rails 4, ruby 2, and haml