Search Results

3
votes

Remove JavaScript code from HTML

Why do you want to filter javascript? If you are trying to prevent cross-site scripting attacks in a web application you're probably better off using a well-tested library for that purpose. …
1
vote

How to measure characters in javascript and/or with jquery

There is no easy way to do this in HTML. However, if you really must know, you can probably figure it out with some really ugly javascript: First, create a <div> with the widt …