Could someone tell me why "in-line" attribute used inside the tag, For example:
<script inline type="text/javascript"></script>
Without this attribute, the JS does not load in the page
The 'inline' property does not exist for the script tag.
Nor does it exist in the list of global attributes
When people say "inline javascript" they're talking about using script tags to put javascript on the page
<script>
alert('hello world!!!');
</script>
Or just into an html tag
<a href="#" onclick="return false;">click here!</a>
as opposed to in a separate file.
<script src="script.js"></script>
inlineattribute?