I have a specific problem with bootsrap popover.
All jquery and bootstrap files are included in file index.php
, in this same file i have this div:
<div id="con"> Loadding </div>
And I have a jquery function which loads a content from php file
$(document).ready(function(){
var auto_refresh = setInterval(
function()
{
$('#con').load('ajax/some.php');
}, 1000);
});
In some.php
file I have link with to activate a bootstrap popover.
echo ' <a href="#"
class="pop-tel"
data-html="true"
data-container="body"
data-trigger="hover"
data-placement="bottom"
data-content="Tel: xxx"
data-original-title="';
echo 'Test">';
echo 'Some one</a>';
the content from some.php
will work great, but bootstrap popover doesn't show.
Can you help me?