Giter VIP home page Giter VIP logo

Comments (1)

WebReflection avatar WebReflection commented on September 25, 2024

it's not just boolean, it's any attribute with a counter API in JS that does the right thing for you.

checked=${false} as attribute, here, is checked="false" while .checked=${false} is input.checked = false which either removes or places the attribute in there.

The type, as <textarea .value=${...}> or <option .selected=${...}>, or any other value that has an accessor, avoids repeated checks on the attribute presence, as that's done behind the scene, so it's faster than if (!value && el.hasAttribute(name)) el.removeAttribute(name); else if (value) el.setttribute(name, value); as it's just el[name] = value and that's how uhtml keeps itself one of the smallest libraries of its kind out there.

However, if you prefer having "magic" around attributes, you can always upgrade to lighterhtml 👋

from uhtml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.