DubFriend / jquery.repeater

Create a repeatable group of input elements
MIT License
389 stars 191 forks source link

Tooltips didnt work #102

Closed christheoalex closed 5 years ago

christheoalex commented 5 years ago

Just have recognized that Bootstrap Tooltips aren't repeated. Any ideas?

christheoalex commented 5 years ago

Solution:

Put the following in the show function..

function tooltip() { $('[data-toggle="tooltip"]').tooltip() }

$.ajax({ success : function(data){ tooltip(); } })