Reputation: 3137
I want to edit some text on popover
there is JSFiddle
Click on button to see Popover
<a href="#" id="example" class="btn btn-primary" rel="popover"
data-content="This is the body of Popover"
data-original-title="Creativity Tuts">pop
</a>
I just want to show textarea within textbox
Can we edit text on popup over ? Thanks
Upvotes: 0
Views: 126
Reputation: 1405
You can use data-html
attribute of the popover. Check the JSFIDDLE edit, Its very basic example.
http://jsfiddle.net/VUZhL/1449/
For more info browse the docs : Bootstrap Docs
Upvotes: 1