Which is better: or

Do you need a type attribute at all? If you’re using HTML5, no. Otherwise, yes. HTML 4.01 and XHTML 1.0 specifies the type attribute as required while HTML5 has it as optional, defaulting to text/javascript. HTML5 is now widely implemented, so if you use the HTML5 doctype, <script>…</script> is valid and a good choice. As to what should go in … Read more

Prevent line-break of span element

Put this in your CSS: Get more information here: http://www.w3.org/wiki/CSS/Properties/white-space white-space The white-space property declares how white space inside the element is handled. Values normal This value directs user agents to collapse sequences of white space, and break lines as necessary to fill line boxes. pre This value prevents user agents from collapsing sequences of white space. Lines are only … Read more

forbidden 403 on image URLS

Looks like when the HTTP request header referrer is anything other than http://4chan.org, I get this issue. Ive simply added the below to the HTML page and its fixed the problem: Once your Angular app is loaded, you can also use Firefox Developer Console (Network Tab) modify image request (ie 403) and remove referrer header to … Read more

the use of `%3F` in URL

First, you should elaborate your question to understand it better after all If I understood it correctly then this might be the answer. “_” is not a reserved URI character. As you said that %3F is reserved for “?” then you are absolutely right but if you read the documentation written on wiki states that … Read more