0

I've got elements in a twitter bootstrap modal that I want to hide and replace with others.

The hide and show work, but trying to add an effect - slide for example - doesn't.

Does anyone know how to do this?

Edward
  • 3,429
  • 2
  • 27
  • 43

3 Answers3

1

I ended up using bootstrap effects rather than trying to mix jquery and bootstrap stuff up.

I used a carousel in the modal, which was different to what I'd planned but worked just as well.

Edward
  • 3,429
  • 2
  • 27
  • 43
0

Maybe you forgot the transition script?

<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-modal.js"></script>
Werner Kvalem VesterĂ¥s
  • 10,226
  • 5
  • 43
  • 50
0

On your modal html you can add a fade in class in order to let it slide in

<div class="modal hide fade in" id="testModal">
...
</div>
dunn less
  • 623
  • 10
  • 26