All Questions
Tagged with jquery-ui-tooltip javascript
173 questions
0
votes
2
answers
116
views
Add tooltip to a disabled bootstrap button
I've tried solutions found on other similar threads, but can't get them working.
I've got a bootstrap button that, when in a disabled state, should have a tooltip letting the user know why it's ...
2
votes
1
answer
299
views
How can I remove the tooltip that shows the last used dates on bootstrap?
I created a datepicker with bootstrap. It works mostly as I want it to, but everytime I click on the field it shows me the last years I have chosen. This blocks the calendar view and is also not ...
0
votes
0
answers
90
views
Tooltip is not correctly positioned in modal
I have modal and inside modal is a grid, so when I focus column, and then scroll down/up, bootstrap tooltip is scrollling too. What should I do to prevent that problem?
Code:
<th data-column-id=&...
0
votes
1
answer
232
views
How to hide tooltip for certain bars in chart.js
I am making a stacked bar that looks like the following:
The spaces you see in between each bar are bars static-sized bars that are the color of the background. I used them because I could not figure ...
0
votes
3
answers
1k
views
ToolTip is not closing with Select2
I am using jQuery UI ToolTip with Select2. My code is like below.
$(".volunteer").on("click", function (event) {
function templateSelection(data_format) {
if (!...
1
vote
3
answers
529
views
Jquery UI tooltip doesn't show on anything
I'm working with 2 bootstrap datepickers and
I want to verify if the start date is greater than the end date then show a tooltip
Here's what I have so far :
http://jsfiddle.net/k84phas6/
$('#...
0
votes
1
answer
1k
views
Only simple tooltip is showing without any style
I don't know why when I hover over my a only a simple tooltip is showing with text.There is no style in it as shown in bootstrap documentation.
(I'm creating a using js)
HTML
<!DOCTYPE html>
<...
1
vote
1
answer
179
views
jQuery UI upgrade creates tooltip position problem. Is there any problem with .position() in jQuery 1.12.1
I have recently upgraded jQuery Ui from 1.10.1 to 1.12.1 and it changes my tooltip placement. IT use to place at left bottom of the element but now after upgrade it appears at left top. Any reason? Is ...
0
votes
1
answer
2k
views
jQuery tooltip with large content
I use the jQuery Tooltip Widget to show tooltips with very large contents. If the content is larger than the size of the tooltip window only the end of the content is shown.
I'm looking for a way to ...
0
votes
1
answer
166
views
Updating jquery-ui tooltip during hide animation breaks it
Whenever you update the content of a jquery-ui tooltip while the hide-animation is running, it'll pop back into visibility and enter some broken state where it is visible forever and unresponsive to ...
0
votes
1
answer
184
views
JQuery-UI tooltip: enable only for mouseover, disable for focusin
Is it possible to make JQuery-UI tooltip open only on onmouseover but not on focusin event, to make it behave more like a native browser tooltip?
I tried this solution, but it didn't work:
$(...
2
votes
1
answer
142
views
Don't show jquery tooltip in specific cases
I have a table and for one column I want to have a tooltip in each row. So all cells in one column have specific class, 'cell1' so I made tooltip with jquery:
$(table).uitooltip({
items: 'cell1',
...
8
votes
2
answers
342
views
JQuery UI tooltip extension using options.items vs title
I wrote the following extension to the JQuery UI tooltip widget that allows the tooltip to have context on getting its content from a HTMLElement's html. However, I have the 'title' attribute hard ...
1
vote
1
answer
213
views
Bootstrap badge function error on the tooltip using escape symbol in the datatable js
I use the following code
var table = $('#example').DataTable({
responsive: true,
"createdRow": function( row, data, dataIndex ) {
var te='something';
var heart='"<div>&...
0
votes
1
answer
173
views
Changing the effect of tooltip through a select menu
I am trying to change the effect of the tooltip based on what the user chooses from a select menu. My problem is that the selected effect works only for the value that's selected by default (like in ...