Tagged Questions

11
votes
4answers
5k views

Sanitize/Rewrite HTML on the Client Side

I need to display external resources loaded via cross domain requests and make sure to only display "save" content. Could use Prototype's String#stripScripts to remove script blocks. But handlers ...
1
vote
2answers
3k views

Simple HTML sanitizer in Javascript

I'm looking for a simple HTML santizer written in JavaScript. It doesn't need to be 100% XSS secure. I'm implementing Markdown and the WMD Markdown editor (The SO master branch from github) on my ...
0
votes
4answers
57 views

What is the Javascript Regexp for finding the attributes in a <span> tags?

I have a <div contenteditable="true> that I am trying to use to get text from users. I would use a simple <textarea>, but I need line-breaks and eventually lists and tables etc. I am ...
0
votes
1answer
354 views

How to escape javascript-generated html in Rails?

On one side of my page, I have a very simple email form. On the other side I have a preview of the proposed email. For example: As the user completes the fields, I'd like to update the preview on ...