Bootstrap modal on another modal

Janath

I just want to show modal on another modal. (Close current one and needs to open new one) So I used

<a href="#contact" data-toggle="modal" data-target="#forget-password" data-dismiss="modal">Register here</a>

data-dismiss="modal" I try with this attribute end of link and it's woking fine. The problem is that the second modal height is bit higher. I can't scroll down to see it's upper content. and input fields looking weird. Please see this image.

enter image description here

Is there any other way to show modal when another modal by closing first modal?

Sodhi saab

try this

$('#myModal-1').on('hidden.bs.modal', function (e) {
        $('#myModal-2').modal('show');
});

https://jsfiddle.net/princesodhi/ru2rz404/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Bootstrap: Open Another Modal in Modal

From Dev

Bootstrap 3 - open modal from another modal

From Dev

Twitter bootstrap show modal from by another modal

From Dev

bootstrap dismiss modal and display another modal

From Dev

Bootstrap Modal from another page

From Dev

Bootstrap Modal from another page

From Dev

bootstrap modal inside a modal

From Dev

Open a modal from another modal using bootstrap and angularJs

From Dev

Bootstrap modal - hide one then show another

From Dev

Bootstrap modal window inside another div

From Dev

Open a bootstrap modal from another page

From Dev

Bootstrap modal values cant pass to another page

From Dev

Bootstrap modal window inside another div

From Dev

Bootstrap modal in modal form issue

From Dev

How to create a password login modal, click submit button and open another modal containing links using bootstrap 3

From Dev

Form in Bootstrap modal not posting PHP values to another page

From Dev

Rails display bootstrap modal of index from another model

From Dev

Calling another controller within AngularJS UI Bootstrap Modal

From Dev

Getting Bootstrap's modal content from another page

From Dev

Trigger Bootstrap modal thats in a component from another template

From Dev

How to display a react-bootstrap modal from another component

From Dev

Bootstrap datepicker not woking in modal

From Dev

Bootstrap modal in Liferay

From Dev

Bootstrap Modal Backdrop Remaining

From Dev

Javascript Variable to Bootstrap Modal

From Dev

href in modal dialog in bootstrap

From Dev

Bootstrap Custom Modal Effect

From Dev

Passing a variable into a Bootstrap modal

From Dev

Scroll to DIV with in the Bootstrap Modal

Related Related

HotTag

Archive