What I want to do is put a simple form in a popover, now my popover works fine, but it doesn't work when I put the form inside a popover.
here is my conclusion

here is my code
<a href="#" class="btn" rel="popover" data-placement="bottom" data-content=" <form class='form-horizontal'> <div class='control-group'> <label class='control-label' for='inputEmail'>Start Date</label> <div class='controls'> <input type='text' class='span3 ' name='start_date' id='start_date' placeholder='News Date' value='<?php echo date('dm-Y'); ?>' > </div> </div> <div class='control-group'> <label class='control-label' for='inputEmail'>End Date</label> <div class='controls'> <input type='text' id='end_date' name='end_date' placeholder='End Date' class='input-xlarge uneditable-input'> </div> </div> </form>" title="Popover on bottom"> </a>
here is the url that taught me did something like this Contains a form in a boot popover?
my version of the initial version was 2.2.2, any idea how to solve my problem? thanks
Oscar source share