Twitter bootstrap tabs and javascript events

后端 未结 7 1519
悲哀的现实
悲哀的现实 2021-01-30 05:15

I am using twitter bootstrap for a project - in particular its tab functions (http://twitter.github.com/bootstrap/javascript.html#tabs)

Now I have this tablist and when

7条回答
  •  一整个雨季
    2021-01-30 05:30

    How about using click? Like this:

    $('#.tabs').click(function (e) {
      e.target(window.alert("hello"))
    })
    

提交回复
热议问题