Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
fd293be5
Commit
fd293be5
authored
Oct 13, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mention tooltip markup in docs per #10102
parent
c31ec226
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
javascript.html
javascript.html
+12
-0
No files found.
javascript.html
View file @
fd293be5
...
...
@@ -847,9 +847,21 @@ $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
</div>
<h2
id=
"tooltips-usage"
>
Usage
</h2>
<p>
The tooltip plugin generates content and markup on demand, and by default places tooltips after their trigger element.
</p>
<p>
Trigger the tooltip via JavaScript:
</p>
{% highlight js %}
$('#example').tooltip(options)
{% endhighlight %}
<h3>
Markup
</h3>
<p>
The generated markup of a tooltip is rather simple, though it does require a position (by default, set to
<code>
top
</code>
by the plugin).
</p>
{% highlight html linenos %}
<div
class=
"tooltip"
>
<div
class=
"tooltip-inner"
>
Tooltip!
</div>
<div
class=
"tooltip-arrow"
></div>
</div>
{% endhighlight %}
<h3>
Options
</h3>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment