Skip to content
Advertisement

How to use click event on bootstrap modal

I generate many bootstrap modals with a php script, and I’d like to edit some input of it when I click button “save changes”. ModalIDs generated are something like “ModalID0000”. But nothing happens with my script when i click on “save changes”.

JavaScript
JavaScript

EDIT : 1st mistake found with modal element selector instead of class, but still no alert

JavaScript

Advertisement

Answer

Save button is the child element of .modal selector.

So $("modal.save") should be replaced to $(".modal .save").

Or that button belongs to .modal-footer so you can put as follows.

JavaScript

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement