Change Twitter Bootstrap Tooltip content on click

前端 未结 25 1364
情深已故
情深已故 2020-11-27 10:02

I have a tooltip on an anchor element, that sends an AJAX request on click. This element has a tooltip (from Twitter Bootstrap). I want the tooltip content to change when th

25条回答
  •  醉酒成梦
    2020-11-27 10:33

    Bootstrap 4

    $('#topic_1').tooltip('dispose').tooltip({title: 'Goodbye'}).tooltip('show')
    

    https://getbootstrap.com/docs/4.1/components/tooltips/#tooltipdispose

    $('#topic_1').tooltip({title: 'Hello'}).tooltip('show');
    setTimeout( function() {
      $('#topic_1').tooltip('dispose').tooltip({title: 'Goodbye'}).tooltip('show');
    }, 5000);
    #topic_1 {
      border: 1px solid red;
      margin: 50px;
    }
    
      
      
      
    
    
    Topic 1

提交回复
热议问题