Code Monkey home page Code Monkey logo

diver.js's Introduction

diver.js

Dives deep into the DOM and dumps it in the object literal notation.

How it works ?

It works by accepting a root-node-id and an empty object. Now it traverses the complete tree and translates every leaf node having an id and a name into its corresponding object literal notation. The name of the leaf node would be translated into an object key and its value will be that key's value. It is important to note that "Select" html element is an exception to the aforementioned criteria. The name attribute on the select element will be taken as the key and the selected option would be taken as it's value.

Attributes supported by the library

Attribute Value Use With
group path.to.your.json.property Any non-container html element like h1..h6, p, input(preferably) etc. Any element which will have child elements inside it won't work like table, div etc.
Delimiter Any token that separates the input value. input - Html Element
name Any valid object key Any non-container html element like h1..h6, p, input(preferably) etc. Any element which will have child elements inside it won't work like table, div etc.

How to use it ?

Include the script

<script type="text/javascript" src="diver.js"></script>

Example Html

<div id="container-top" style="margin:10%">
<div class="hide">
<div class="form-horizontal control-group"  style="margin-left: -118px">
    <label class="control-label" for="inputName">Name</label>

    <div class="controls">
	<input class="input_fat span2" type="text"  name="first_name" group="personal_details" placeholder="First"
	      value="cafebabe">
	<input class="input_fat span2" type="text"  name="last_name"  group="personal_details" placeholder="Last"
	      value="1991">
    </div>
</div>
<div class="form-horizontal control-group"  style="margin-left: -118px">
    <label class="control-label" for="inputAge">Age</label>

    <div class="controls">
	<input class="input_fat span2" type="text"  name="age" group="personal_details.age" placeholder="Age" value="21">
    </div>
</div>
<div class="form-horizontal control-group"  style="margin-left: -118px">
    <label class="control-label" for="inputEmail">Email</label>

    <div class="controls">
	<input class="input_fat span3" type="text" group="personal_details.email" name="email_id"  placeholder="Email" value="[email protected]">
	<input class="input_fat span3" type="checkbox" group="personal_details" name="isChecked">
	<input class="input_fat span3" type="text" name="Delimited-values" delimiter="," placeholder="delimited values" value="foo,bar,john-doe">
	<select name="cars">
	    <option>Lamborghini</option>
	    <option>Porsche</option>
	    <option>Maybach</option>
	</select>
    </div>
</div>
</div>
</div>```

### Example call to the diver's function
```javascript
var obj = diver.traverse('container-top',{});

Output

{
"personal_details": {
        "isChecked" : "false",
	"first_name": "cafebabe",
	"last_name": "1991",
	"Delimited-values":["foo","bar","john-doe"],
	"age": {
		"age": "21"
	},
	"email": {
		"email_id": "[email protected]"
	}
},
"cars": "Lamborghini"
}

diver.js's People

Contributors

ashish-chopra avatar raul1991 avatar

Watchers

 avatar  avatar  avatar

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.