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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T16:37:46+00:00 2026-05-12T16:37:46+00:00

I’m building an Adobe AIR application with a bit of jQuery to dynamically change

  • 0

I’m building an Adobe AIR application with a bit of jQuery to dynamically change the display of the application. Part of the display includes links with Javascript functions on the onclick event except, in the application, onclick is disregarded when the div has been manipulated by jQuery. I’ve confirmed that onclick works fine when it’s a part of the original HTML, and jQuery (in a browser) is normally capable of adding HTML that includes the onclick event. Any idea why Adobe AIR causes it to choke?

It isn’t the exact same situation, but here’s a similar report.

  • 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-12T16:37:46+00:00Added an answer on May 12, 2026 at 4:37 pm

    There are a couple of things I had to do in order to get this to work. First, when dynamically generating the HTML, I assigned a unique class to all of the elements I wanted to make clickable (and simulate the onclick behavior). After the display had been generated, I pulled all spans on the page as such:

    var span = document.getElementsByTagName('span');

    and then iterated through them, adding an event listener to the ones where I needed a clickable action:

    for(var i=0; i<span.length; i++){
    if (span[i].className == "firstUniqueClass") {
        span[i].addEventListener("click", firstUniqueFunction, false);
    } else if (span[i].className == "secondUniqueClass") {
        span[i].addEventListener("click", secondUniqueFunction, false);
    }
    }
    

    In short, what this gives me is the ability to assign a function whenever there’s a click event on one of those spans. Unfortunately, I also wanted to pass variables to my functions. I ended up having to encode those in the element, in pseudo-RDF, and then decoding it in the function. For instance, if I added ‘data:url=”http://www.google.com/”‘, I’d regenerate it as such:

    function copyLink(event) {
        var startPos = event.currentTarget.outerHTML.indexOf('data:url="') + 10;
        var endPos = event.currentTarget.outerHTML.indexOf('"', startPos + 2);
        var link = event.currentTarget.outerHTML.slice(startPos, endPos);
    }
    

    Tada. A hackish way to reenable the onclick event in Adobe AIR.

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

Sidebar

Related Questions

No related questions found

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.