Giter Site home page Giter Site logo

browser-tools's People

Contributors

calvein avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

browser-tools's Issues

value.get() and select

value.get() on an option tag should give you the value of the individual tag, regardless of selected.

But what should it do if applied to a select box?

My current ideas are:

<select id="select">
    <option value="foo" selected>bar</option>
    <option value="baz">quux</option>
</select>

<select id="multiple">
    <option value="foo" selected>bar</option>
    <option value="baz">quux</option>
    <option value="beep" selected>boop</option>
</select>
var get = require('browser-tools/value/get')
  , select = document.getElementById('select')
  , multiple = document.getElementById('multiple')

get(select) // 'foo'
get(multiple) // ['foo', 'beep']

What do you think @Calvein?

Consider more packages / collaboration

I have a few modules that do similar things.

Namely

  • by - does same as browser-tools/query
  • class-list - does same as browser-tools/classes
  • insert - does the same as browser-tools/manipulate
  • data-set - it looks like you have not implement dataset emulation.

From the looks of it there is plenty of room to break each one of these folders to its own github repo / npm package.

I also maintain a list of minimal DOM libraries

First pass at tests

Basic functionality tests for:

  • attributes
  • classes
  • css
  • dimensions
  • events
  • forms
  • html
  • manipulate
  • position
  • properties
  • query
  • text
  • traversal
  • utils

Better name

I think the name is passable, but I'd prefer something better too.

Any ideas on your end @Calvein? So far all I'm doing are words with the letters D O M in it.

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.