Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 65 results for
popover
- Page 1
close button on popover
Programming
Web Development
6 Years Ago
by erum
…style="display:none">My Review
popover
content goes here.</div>*@ <… LabTaskClassforShowHideCol77" title="Warning" data_toggle="
popover
" style="/*! width: 1px !important; …="display:none">My Review
popover
content goes here.</div>*@ <…
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
…event.preventDefault(); event.stopPropagation(); $("#btn").
popover
({ title: "Dynamic content", content:… </div>', html: true }).
popover
("show"); $("#spn").html…
Can't select Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
…popovers using Twitter Bootstrap. I want to change the
popover
's content dynamically later on in my program, …so after setting the
popover
: $("#test").
popover
(selector:$("#test")); $("#test"…"); I try setting the selector of the
popover
so I can manipulate it later. This doesn'…
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
…event) { event.preventDefault(); event.stopPropagation(); $("#btn").
popover
({ title: "Dynamic content", content: '<span…quot;>Testing</span>', html: true }).
popover
("show"); $("#spn").html("…
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
…(); event.stopPropagation(); $("#btn").
popover
({ title: "Dynamic content",…+ '</div>', html: true }) .
popover
("show"); $("#hullo").click(function…
Re: Can't select Bootstrap popover
Programming
Web Development
12 Years Ago
by radow
You have error on first line. Method
popover
() as a parameter to takes object. You forget to added braces. $("#test").
popover
({selector:$("#test")}); I hope this help.
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
…html generated is as follows: <div class="
popover
fade bottom in" style="top: 154px;… <div class="
popover
-inner"> <h3 class="
popover
-title">Words Found…</h3> <div class="
popover
-content"> <p class="innerHTML&…
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
… accident. Here it is: <div class="
popover
fade bottom in" style="top: 154px; …; <div class="
popover
-inner"> <h3 class="
popover
-title">Words Found…</h3> <div class="
popover
-content"> <p class="innerHTML&…
Can't change items within Bootstrap Popover
Programming
Web Development
12 Years Ago
by HelloJarvis
…text/javascript" src="/resources/includes/bootstrap/js/bootstrap-
popover
.js"></script> <script type=&…$(".helper").hide(); $(".word").each(function () { $(this).
popover
({content:$(".helper." + $(this).data("word")).html…
Re: Twitter Bootstrap popover boundary
Digital Media
UI / UX Design
5 Years Ago
by rproffitt
…-to-create-pdf-report-in-php#post2257830 and the
popover
is uncalled for since there is nothing to show.….png](/attachments/large/1/6b2712d58ad62018511312298e871e7b.png) This rather huge
popover
may be of interest when you are developing but here…when the mouse is moved off the link. The
popover
sticks around like a zombie until I click on …
Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
… the Bootstrap framework. I've tried: $("#button").
popover
({content:"<span id="test">Test&…
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
…. If you don't have any more problems with the
popover
plugin, please mark as solved. If you have futher problems… create another topic, unless it is directly related with the
popover
plugin. Seeya.
Twitter Bootstrap popover boundary
Digital Media
UI / UX Design
5 Years Ago
by Dani
… realizing that by setting the boundary property for Twitter Bootstrap
popover
Javascript to viewport (I believe it's parent element by… else is having that problem, this fixes it. :) data-toggle:
popover
data-container: body data-boundary: viewport data-trigger: hover focus
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
Try this instead: $("#button").
popover
({content:'<span id="test">Test</span>', html:true, placement:"bottom"});
Re: Twitter Bootstrap popover boundary
Digital Media
UI / UX Design
5 Years Ago
by Dani
Having the
popover
display even when a thumbshot is unavailable has been the way it has been for 10+ years. The reason is because there is no easy way to test whether a screenshot is available or not for a given link until we go ahead and try it. However, as I'm typing this, I actually thought of a way that just might work. Stay tuned :)
Re: close button on popover
Programming
Web Development
5 Years Ago
by ayoub_8
hello gays
Re: Can't select Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
That didn't work but I found why it wasn't working, thanks anyways!
Re: Can't change items within Bootstrap Popover
Programming
Web Development
12 Years Ago
by AleMonteiro
Try using live: $(".replaced").live("click", function() { alert("Yeah!"); }); Using 'click' will only attach handlers to existing objects. Using 'live' it'll attach the handlers to any existing object and also for objects created latter.
Re: Can't change items within Bootstrap Popover
Programming
Web Development
12 Years Ago
by HelloJarvis
This works, thanks!
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
Why would changing the quotes do anything? I'm not challenging you, just wondering.
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
Because `"<span id="test">Test</span>"` it's not a valid string. Those would be valid strings: "<span id=\"test\">Test</span>" // scape the inside double quotes "<span id=test>Test</span>" // doesn't use inside double quotes "<span id…
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
Oh, okay. Thanks!
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
Did it solve your problem?
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
No, it actually didn't. I tried selecting the span inside via $("#test").html("hi"); directly after, but that didn't work.
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
Your HTML is invalid too, there's no closing tag for the '<span>'
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
Yup, I had a feeling I missed some tag somewhere; I'm still debugging the program. But would that affect how jQuery works?
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
Please post a complete example of what you are trying to do. With the HTML, JS and CSS. An example that I can test and debug to try and find your problem.
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by HelloJarvis
The thing is, I'm generating this HTML server-side. I supposed I could try to escape the string in PHP though...
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
You'll need it to work. No matter where the string is generated, it always need to be valid.
Re: Can't select items within Bootstrap popover
Programming
Web Development
12 Years Ago
by AleMonteiro
But why do you need to generate it on the server? Can't you do it on the interface?
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC