I use Bootstrap Popover in the "Repeat Region", which displays reviews. Each review has a button "View object properties" that opens a popover. In Pop Pop, I want to display an image associated with each recall and image details. The image path is stored in a database column, so to display the image for each evidence I need to link the image source to the content, but it does not accept PHP. I use a script that allows me to write html to the content, but the image needs to be created dynamically. Dynamic text works in the parameter 'a' tag 'title', but not for Content.
Can anyone shed some light on this?
Here is what I have.
<script type="text/javascript"> $(document).ready(function() { $("[rel=details]").popover({ placement : 'bottom', </script> <a href="#" rel="details" class="btn btn-small pull-right" data-toggle="popover" title="<?php echo $row_rsTstmnlResults['property_name']; ?>" data-content="">View Property</a>
javascript jquery php twitter-bootstrap popover
Steve Joiner Jan 30 '14 at 14:23 2014-01-30 14:23
source share