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 7019711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:13:11+00:00 2026-05-27T23:13:11+00:00

Using Fusion Tables and GMaps(v3) with Jquery(v1.7.1). Gmaps displays a layer using Fusion Tables

  • 0

Using Fusion Tables and GMaps(v3) with Jquery(v1.7.1).

Gmaps displays a layer using Fusion Tables data. The InfoWindow is populated using Fusion Tables information (configured in the Google Docs -> Fusion Table -> Configure Info Window interface).

At the bottom of the custom HTML of the FT Info Window is a link that reads:

<div><a class="detail" href=#><b>Click to see more detail</b></a>
</div>

I have JQuery testing to see if it is clicked and then executing code.

$('.detail').on('click', function(){
    console.log('Click worked');
});

The JQuery code is inside the initialize function that runs on body “onload”.
I was using the .live jquery handler but that has been deprecated and was giving me problems anyways. The .on handler isn’t firing though.

Any suggestions?

  • 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-05-27T23:13:12+00:00Added an answer on May 27, 2026 at 11:13 pm

    The way you’re currently using on, only anchors that exist when the page is rendered will be wired up with this click handler; dynamically added anchors will not be picked up like they were with live.

    You’ll need to do something like this:

    $(document).on('click', '.detail', function(){
        console.log('Click worked');
    });
    

    Now all clicks that happen anywhere in the document will be observed, and any coming from an element with the class detail will cause the function to fire.

    But this is wasteful. Hopefully there’s some sort of container that you know will always contain these anchors. If there is, you could do:

    $("#someDivId").on('click', '.detail', function(){
        console.log('Click worked');
    });
    

    Now only clicks happening from inside the element with the id someDivId will be observed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am using Google Fusion Tables and Google Maps to display geographical data (e.g.
I have a Google Map that pulls data from Fusion Tables and displays it.
I'm trying to read data from Google Fusion Tables API into Python using the
I am currently doing a tracking application and am using Google maps fusion table
I am attempting to fetch data from a Fusion Table, using an IN operator.
I'm using Fusion tables with Google Maps API. When map's zoom is 0, 1
I'm building an election heat map using Google Fusion Tables, the Maps API and
When using Google Maps API with Google Fusion Tables (with API), I would like
I use the following code snippet to load data from google fusion table as
As anyone any idea on how to update a table in google fusion using

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.