jquery-encoder
jquery-encoder copied to clipboard
Contextual Output Encoding for jQuery
Update README.md to fix a tiny typo in the usage example. Replaced "it's" with "its"
Adds UMD header, so the project can be used both from CommonJS projects, AMD projects, and plain old tags in the document header. Dependencies on jquery and resig-class are declared...
http://www.borland.com/Products/Change-Management/AccuSync/Product-Trial/Download?ld=IiXGdAAA2/w=&sn=RRPK8wk5l4M=
http://www.borland.com/Products/Change-Management/AccuRev/Product-Trial/Download?ld=TzEVp1fHOzg=&sn=cIyDGvoOyYA=
In other words, it thinks that a string is encoded when it is actually not and therefore if I do something like $.encoder.encodeForHTML($.encoder.canonicalize(string)), it gives me a different string The...
Testing on http://rawgithub.com/chrisisbeef/jquery-encoder/master/site/index.html shows that invalid/incorrect CSS escape sequences are generated for [astral symbols](http://mathiasbynens.be/notes/javascript-encoding#bmp): ``` js $.encoder.encodeForCSS('\uD834\uDF06'); // U+1D306 TETRAGRAM FOR CENTRE; GitHub won’t let me use the raw symbol...
is there any problem with reverting the order of apostrophes: title= ' " + $.encoder.encodeForHTMLAttribute(var) + " ' and title= " ' + $.encoder.encodeForHTMLAttribute(var) + ' " do they work...
The function encodeForHTML don't protect against XSS attacks like : *remove the "
I realize ' was not a valid HTML entity code as of HTML4, but it was added in HTML5. Once in awhile I do come across strings containing ' that...
hi im passing some content through the encoder with encodeForHTML, but the encoder is removing some br tag from the content. when they are two in a row i only...