Display Popup when text is clicked in wordpress -


i have html code in wordpress.:

'<a href="">example</a>'

when "example" clicked, needs show popup window texts. came across wordpress popup plugins uji popup,etc.. given short codes. how can use shortcodes "href". or other plugins can use, or easy ideas display popup when text clicked in wordpress?

hi can used bootstrap modal popup. demo

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>    <!-- button trigger modal -->  <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#mymodal">    launch demo modal  </button>    <!-- modal -->  <div class="modal fade" id="mymodal" tabindex="-1" role="dialog" aria-labelledby="mymodallabel">    <div class="modal-dialog" role="document">      <div class="modal-content">        <div class="modal-header">          <button type="button" class="close" data-dismiss="modal" aria-label="close"><span aria-hidden="true">&times;</span></button>          <h4 class="modal-title" id="mymodallabel">modal title</h4>        </div>        <div class="modal-body">          ...        </div>        <div class="modal-footer">          <button type="button" class="btn btn-default" data-dismiss="modal">close</button>          <button type="button" class="btn btn-primary">save changes</button>        </div>      </div>    </div>  </div>


Comments

Popular posts from this blog

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -