OWASP is the short form for Open Web Application Security Project, which concentrates on finding the security vulnerabilities or the possible attacks can cause problems to applications. In this article I concentrate on how the front-end or the HTML5 and javascript vulnerabilities can be taken care. One of the major topics around this is Content … Continue reading “OWASP In javascript”
Tag: html5
Web-Workers
A web worker is a JavaScript that runs in the background. Independent of other scripts, without affecting the performance of the page. Web worker specification defines an API for spawning background scripts in our web application. Web workers allow us to do things like fire up long-running scripts to handle computationally intensive tasks, without blocking … Continue reading “Web-Workers”
Custom HTML File Browser
There may be many ways to customize the file browser provided by HTML5, but i chose the easiest way to achieve it. Firstly create an Input tag with the type as file and attach a function for ‘onchange’ event. Hide the browser tag by setting the display style of this tag to none. Create one … Continue reading “Custom HTML File Browser”