Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8952229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:49:51+00:00 2026-06-15T13:49:51+00:00

In a user interface based on Twitter Bootstrap I have multiple buttons that should

  • 0

In a user interface based on Twitter Bootstrap I have multiple buttons that should trigger a popover yielding a farbtastic colorpicker. At the moment I have attached it to the <body /> tag and delegated it to the buttons:

HTML

<div id="body" style="text-align:center;">

<a class="btn" rel="popover">First</a>
<a class="btn" rel="popover">Second</a>

<div id="colorpicker">
    <input type="color" id="color" />
    <div class="my-farbtastic"></div>
</div>

</div>

JavaScript

$(document).ready(function() {
    $("body").popover({
        trigger: "click",
        placement: "bottom",
        title: "Colorpicker",
        content: $("#colorpicker"),
        selector: "a[rel=popover]",
        html: true
    }).on("click", "a[rel=popover]", function() {
        $("#colorpicker").find(".my-farbtastic").farbtastic("#color");
    });
});

With this approach I have two problems:

  • The popover does not appear next to the respective button, but is aligned with the <body /> tag.
  • The colorpicker only works when the popover is triggered for the first time. Afterwards all JavaScript-based functionality is lost.

See this jsFiddle for a live demo.

Thank you in advance for any helpful thoughts on that!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:49:52+00:00Added an answer on June 15, 2026 at 1:49 pm

    In between I solved the problem myself and this is what my solution looks like (also see version 11 of the jsFiddle):

    HTML

    <div id="body" style="text-align:center;">
        <input type="text" rel="colorpicker" data-tool="first" />
        <input type="text" rel="colorpicker" data-tool="second" />
    </div>
    

    JavaScript

    $(document).ready(function() {
        $("input[rel=colorpicker]").each(function(i, input) {
            $this = $(input);
            return $this.popover({
                title: "Colorpicker <i class='icon-remove pull-right'></i>",
                trigger: "click",
                placement: "bottom",
                html: true,
                content: "<div id='colorpicker-" + $this.data("tool") + "'>"
                + "<div class='color-picker'></div>"
                + "</div>"
            }).on("click", function() {
                $this = $(this);
                $target = $("#colorpicker-" + $this.data("tool"));
                $target.find(".color-picker").farbtastic(function(color) {
                    $this.val(color).css("background-color", color);
                });
            });
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing a web-based user interface that plots some data from a database
I have a n-tier application based on pretty classic different layers: User Interface, Services
I've heard that Windows Phone 7's user interface (UI) is completely based on Silverlight.
the company I work for has a web-based user interface which paying clients log
I'm trying to pass the user on to the interface based on their cell
User interface for web applications in general contain various buttons for performing CRUD operations.
We are creating a user interface that functions on a wide variety of platforms
I have been developing an user interface with Java Swing, and I have met
I'm working on my own private Windows desktop application user interface framework based on
How easy it's to come up with a drag and drop web-based interface that'll

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.