Giter Club home page Giter Club logo

jquery-switchbutton's Introduction

jQuery-switchButton

jQuery iPhone-like switch button meant to be used on a <input type="checkbox">.

This widget will replace the receiver element with an iPhone-style switch button with two states: "on" and "off". Labels of the states are customizable, as are their presence and position. The receiver element's "checked" attribute is updated according to the state of the switch, so that it can be used in a <form>.

Demo

Check out the demo page here: http://olance.github.io/jQuery-switchButton/

Dependencies

This is a jQuery UI plugin, so you'll need jQuery and jQuery UI.

Usage

Say this is your markup:

<form action="...">
  <label for="great">Isn't it great?!</label><input type="checkbox" name="great" id="great">
</form>

You can transform this checkbox to a nice-looking switch button by calling switchButton() on it:

options = { /* see below */ };
$("input#great").switchButton(options);

By default, this will display a button with "ON" and "OFF" labels on each side of the switch. You can control this and other parameters at initialization or by calling switchButton("option", "optionName", value). Here are the available options:

checked: undefined        // State of the switch

show_labels: true         // Should we show the on and off labels?
labels_placement: "both"  // Position of the labels: "both", "left" or "right"
on_label: "ON"            // Text to be displayed when checked
off_label: "OFF"          // Text to be displayed when unchecked

width: 25                 // Width of the button in pixels
height: 11                // Height of the button in pixels
button_width: 12          // Width of the sliding part in pixels

clear: true               // Should we insert a div with style="clear: both;" after the switch button?
clear_after: null         // Override the element after which the clearing div should be inserted (null > right after the button)

Styling

The button and labels are styled with a few lines of CSS in jquery.switchButton.css. Have a look at this file and fiddle with it to change the look of you switch button!

Wordpress users

Have a look at this answer on StackExchange to include jQuery easing functions in order to make this plugin work in Wordpress.

License

Copyright (c) Olivier Lance - Released under MIT License:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

jquery-switchbutton's People

Contributors

faisalbegins avatar nicholeous avatar olance avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jquery-switchbutton's Issues

Error in Jquery ui 1.10.3

I get a javascript error under the actual WP Version 3.8.1:

TypeError: x.easing[this.easing] is not a function

If I manually load ui 1.10.2 from google, all is good. Any Idea about this?

Gretings from Germany

Toggle events

Where are the toggle events.. I want to call the functions on each of the events..

Not possible to disable the button?

Nice button, :-)
But if i want to disable it, it does not respect the disable="disabled" attribute on the checkBox.
Do i need to do something different?

working in chrome but not in ie 11

Hi,
I am using your switchButton in my code, it's working fine in chrome but was surprised that it does not work in internet explorer 11.
thanks, your help is appreciated.

help

im making a page redirect with this so if its turned on it will send people to an error page instead of the original page but when its off it will send them back to the normal page. (this is so i can edit my website without ppl visiting it) i want it to toggle the var value true/false when switching the switch and how can i get the page to save the value of it being on or off when its refreshed it stays in the position i had it in? can you help me asap

Underlying checkbox "checked" attribute does not change even though redraw occurs

Hi!

I noticed that jquery.switchButton.js doesn't update the underlying checkbox "checked" attribute even though the event triggering the UI animation is fired. The "examples" site seems to suffer from this:

http://olance.github.io/jQuery-switchButton/

So the underlying input should change to checked="checked" but at the moment it does not.

It appears that the .change() event does not properly fire. I'm not sure why this happens, with Chrome Inspector's JS debugger this.element property "checked" is true :(

I'm using Wicket 6.9.1 with JQueryUI 1.9.1 and jQuery 1.10.1 in my project.

Not working with jquery / ui (latest)

I have tried getting this to work wit my current CDN includes (latest) AND local 1.10.* versions, it breaks with both, but soon as i use the earlier versions included here it works - any ideas?

tx

Enable button css font-resize from jquery

You can allow text resizing from options simply add

// Create our objects: two labels and the button
.css({"font-size": this.options.height + "px"});
.css({"font-size": this.options.height + "px"});

in lines 75 and 76 ;)

Why not?
Best regards

What are the jquery and jqueryui requirements?

I'm currently unable to get this to work:

$("input[type=checkbox]").switchButton({ checked: false, on_label: "Reviewers and Document Owners", off_label: "Reviewers" });

The errors I'm seeing in Chrome are:

ui.core.js:111 Uncaught TypeError: Cannot set property 'switchButton' of undefined at Function.$.widget (ui.core.js:111) at jquery.switchButton.js:42 at jquery.switchButton.js:306

Triggering a Refresh

Hi there,

I've got a form that hides in a jQuery Dialog, which I copy values to based on a click of an element in the page.

I set the value of the inputs (there is an input[type=checkbox] and a hidden - this is an MVC website) to have the checked / value=true, depending on the hidden fields of the clicked item.

However the switchButton doesn't seem to update / switch itself over when setting the underlying input field. Is there a way to trigger this?

Thanks,
Ben

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.