0
I am trying to insert a Wizard in my system, and I come across this error:
I’m using bootstrap 3 and got a template ready on bootsnipp and there it works perfectly. I haven’t made any kind of change yet, I’ve changed several versions of jquery and it doesn’t work.
Thank you in advance for your help!
Make sure you have included not only jQuery, but also Bootstrap.js on the page. You have to make sure to put these two before any of your Javascript, where you set things.
– Wallace Maxters
It is inserted yes @Wallacemaxters What I find strange is that other functions like dropdowns, Collapse work perfectly.
– José Allison
This is happening because you were unable to select any element with the selector
$('.nav-tabs > li a[title]')
. .– taiar
This appears @taiar : https://i.snag.Gy/Idwzif.jpg . The funny thing is that by clicking the next button, it n works, if I click directly on the dots on top it works.
– José Allison
Dude, the dial is wrong. Do the same thing without the
.tooltip()
at the end. You will see that you are getting an empty array[]
. This means you are selecting wrong with xpath'.nav-tabs > li a[title]'
.– taiar
This is the problem. Nothing appears, not to mention that the site where I got the template works. I think it may be a matter of importing libraries
– José Allison