Skip to content

fixing the jQuery syntax #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ EX: Initialize id `chkSwitch` with a single line of JavaScript.
<input id="chkSwitch" type="checkbox" checked />
<script>
$(function() {
$("#chkSwitch").switchbutton();
$("#chkSwitch")[0].switchButton();
});
</script>
```
Expand All @@ -90,7 +90,7 @@ EX: Initialize id `chkSwitch` with a single line of JavaScript.
<input type="checkbox" id="switch-two" />
<script>
$(function() {
$("#switch-two").switchButton({
$("#switch-two")[0].switchButton({
onlabel: "Enabled",
offlabel: "Disabled"
});
Expand Down Expand Up @@ -119,13 +119,13 @@ Methods can be used to control switch buttons directly.

| Method | Example | Description |
| ---------- | ------------------------------------------- | ------------------------------------------------- |
| initialize | `$('#switch-demo').switchButton()` | Initializes the switch button plugin with options |
| destroy | `$('#switch-demo').switchButton('destroy')` | Destroys the switch button |
| on | `$('#switch-demo').switchButton('on')` | Sets the switch button to 'On' state |
| off | `$('#switch-demo').switchButton('off')` | Sets the switch button to 'Off' state |
| toggle | `$('#switch-demo').switchButton('toggle')` | Toggles the state of the switch button on/off |
| enable | `$('#switch-demo').switchButton('enable')` | Enables the switch button |
| disable | `$('#switch-demo').switchButton('disable')` | Disables the switch button |
| initialize | `$('#switch-demo')[0].switchButton()` | Initializes the switch button plugin with options |
| destroy | `$('#switch-demo')[0].switchButton('destroy')` | Destroys the switch button |
| on | `$('#switch-demo')[0].switchButton('on')` | Sets the switch button to 'On' state |
| off | `$('#switch-demo')[0].switchButton('off')` | Sets the switch button to 'Off' state |
| toggle | `$('#switch-demo')[0].switchButton('toggle')` | Toggles the state of the switch button on/off |
| enable | `$('#switch-demo')[0].switchButton('enable')` | Enables the switch button |
| disable | `$('#switch-demo')[0].switchButton('disable')` | Disables the switch button |

# Events

Expand Down Expand Up @@ -159,10 +159,10 @@ This also means that using the API or Input to trigger events will work both way
<button class="btn btn-danger" onclick="toggleInpOff()">Off by Input</button>
<script>
function toggleApiOn() {
$("#switch-trigger").switchButton("on");
$("#switch-trigger")[0].switchButton("on");
}
function toggleApiOff() {
$("#switch-trigger").switchButton("off");
$("#switch-trigger")[0].switchButton("off");
}
function toggleInpOn() {
$("#switch-trigger")
Expand Down