0.8.1 • Published 2 months ago

jobserve.js v0.8.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Tweet npm nuget license discussions Welcome coded by William Troup

  • Zero-dependencies and extremely lightweight!
  • JS Object and HTML DOM Element watching!
  • Watch for specific property changes!
  • Cancel, Pause, and Resume support!
  • Full API available via public functions.
  • Fully configurable!
  • Fully configurable per watch!
  • Custom triggers for actions (when changes are detected, on cancellation, etc).

All modern browsers (such as Google Chrome, FireFox, and Opera) are fully supported.

To see a list of all the most recent changes, click here.

You can install the library with npm into your local modules directory using the following command:

npm install jobserve.js

To get started using Observe.js, do the following steps:

1. Prerequisites:

Make sure you include the "DOCTYPE html" tag at the top of your HTML, as follows:

<!DOCTYPE html>

2. Include Files:

<script src="dist/observe.js"></script>

3. DOM Element Binding / Object Watching:

<div data-observe-watch-options="{ 'onChange': yourCustomJsFunction }">
    Your HTML.
</div>
<script> 
    var id = $observe.watch( yourObject, {
        onChange: yourCustomJsFunction
    } );
</script>

To see a list of all the available binding options you can use for "data-observe-watch-options", and "watch()", click here.

To see a list of all the available custom triggers you can use for "data-observe-watch-options", and "watch()", click here.

4. Finishing Up:

That's it! Nice and simple. Please refer to the code if you need more help (fully documented).

To customize, and get more out of Observe.js, please read through the following documentation.

1. Public Functions:

To see a list of all the public functions available, click here.

2. Configuration:

Configuration options allow you to customize how Observe.js will function. You can set them as follows:

<script> 
  $observe.setConfiguration( {
      safeMode: false
  } );
</script>

To see a list of all the available configuration options you can use, click here.

0.8.1

2 months ago

0.8.0

2 months ago

0.7.1

2 months ago

0.7.0

3 months ago

0.6.1

4 months ago

0.6.0

4 months ago

0.5.0

4 months ago

0.5.1

4 months ago

0.3.0

4 months ago

0.4.0

4 months ago

0.2.0

4 months ago

0.1.0

4 months ago