-
Updated
Aug 12, 2021 - JavaScript
{{ message }}
I use some facebook markup that I let facebook parse from DOM:
<fb:login-button
auto-logout-link="false"
button-type="continue_with"
size="large"
scope="public_profile,email"
use-continue-as="true">
</fb:login-button>
In my onMount I then let the facebook API do it's thing with th
jsoup: the Java HTML parser, built for HTML editing, cleaning, scraping, and XSS safety.
DOMPurify - a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. DOMPurify works with a secure default, but offers a lot of configurability and hooks. Demo:
The ZeroClipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie and a JavaScript interface.
An absurdly small jQuery alternative for modern browsers.
CSS classes to move your DOM!
Common tasks of managing HTML DOM with vanilla JavaScript. Give me 1
fd = new FormData
fd.set('a', new Blob)
fd.get('a') === fd.get('a') // false in chromium - true in FF & Safari (don't have IE on Mac)Looks like there is no test to cover this senario: https://github.com/web-platform-tests/wpt/blob/e45a9f9e65d039c76817ee2a6a1ef02c9311a1cb/xhr/formdata/set-blob.any.js
I think fd.get('a') === fd.get('a') should be true
A simple and fast API to monitor elements as you scroll
Forgiving HTML and XML parser
Tiny (2 KB) turboboosted JavaScript library for creating user interfaces.
Web Application Security Scanner Framework
A Fast & Light Virtual DOM Alternative
Light-weight, simple and fast XML parser for C++ with XPath support
A minimal WebAssembly virtual DOM to build C++ SPA (Single page applications)
Slip.js — UI library for manipulating lists via swipe and drag gestures
Headless Chromium-based web performance metrics collector and monitoring tool
Add a description, image, and links to the dom topic page so that developers can more easily learn about it.
To associate your repository with the dom topic, visit your repo's landing page and select "manage topics."
When looking up an attribute with .attr(), the name of the attribute should be lowercased before looking up in .attribs object.