Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Show docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jun 6, 2012
1 parent 53ebde2 commit 1d04091
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/show.md
Expand Up @@ -172,7 +172,8 @@ $('.selector').qtip({
true, false *(Default: false)*

### Overview
Determines whether or not the tooltip is shown once the document is loaded e.g. when the (document.ready())(http://docs.jquery.com/Events/ready) event is triggered.
Determines whether or not the tooltip is shown as soon as it is bound to the element i.e. when the .qtip() call is fired. This is useful for tooltips
which are created inside event handlers, as without it they won't show up immediately.

### Examples
Create a tooltip that's shown on document load. This could be handy for things like step-by-step tutorials.
Expand All @@ -194,11 +195,11 @@ $('.selector').qtip({

### Notes
* This option obeys your [show.delay](#delay) setting, so set it to zero if you want it to show instantly on page load!
* Enabling this option on multiple tooltips can slow down your page load times.
* Enabling this option on multiple tooltips which are bound on document.ready or window.load, can slow down your page load times.


<a name="ready"></a>
## show.ready
<a name="effect"></a>
## show.effect

### Values
function(){}, true, false *(Default: true)*
Expand Down

0 comments on commit 1d04091

Please sign in to comment.