Skip to content
Advertisement

Pass id value from ahref to bootstrap modal php

I have a php code that creates a list from the database. One of the items I retrieve from the database is the row id. I create the list in the following code:

JavaScript

The syntax for calling #myModal

JavaScript

as you can see the anchor #myModal and onclick

After clicking anchor I would like to pass $coverid to the following myModal pop up

JavaScript

I under the impression that I need to have some form a hidden javascript variable in

JavaScript

Advertisement

Answer

  1. uses a single modal
  2. use attribute data-id to store cover id: data-id="< ?php $coverid = $row['coverid'] ?>"
  3. add class to trash icon, for example class="trash"
  4. add id for Delete button in modal, for example id="modalDelete"

and in JQ:

JavaScript

http://jsfiddle.net/4j59z60e/4/

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