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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T01:07:06+00:00 2026-06-10T01:07:06+00:00

If I have an element on the page like this … <span data-function=DoSomething>Click</span> …

  • 0

If I have an element on the page like this …

<span data-function="DoSomething">Click</span>

… and i put this in my page header …

$(document).ready(function() 
{ 
   $('[data-function]').each(function()
   {
       var fName = $(this).attr('data-function');
       $(this).click(fName);
   });
});

… what goes in place of the comment produce the desired effect of executing the function called “DoSomething”.

Note:
I no the code above wont work, my question is how to make this work (translate ‘DoSomething’ in to DoSomething();)

Any ideas guys?

  • 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-10T01:07:08+00:00Added an answer on June 10, 2026 at 1:07 am

    The functions should be available. Try putting them in an Object, like this:

    $(document).ready(function() 
    { 
       var fns = {
          DoSomething: function() {/* ... */},
          DoAnotherthing: function() {/* ... */}
       };
       $('[data-function]').each(function()
       {
           var fName = $(this).attr('data-function');
           $(this).click(fns[fName]);
       });
    });
    

    Here’s a jsfiddle, demonstrating a way to keep everything local to one namespace and assigning handlers based on the data attribute of elements.

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

Sidebar

Related Questions

Say I have an element in my HTML page like so: <span class=special caption['This
I have a messy html that looks like this: <div id=:0.page.0 class=page-element style=width: 1620px;>
If have an element that maybe disabled on a page, and would like to
I have a page like this : <div id=daysTable> <div id=day0 class=day></div> <div id=day1
I have an anchor element like this: <a href=/link-to-image/ rel=attachment wp-att-7076><img src=/uploads/img.jpg alt= title=
I have a plugin that looks like this: (function($) { $.fn.plugin_name = function(options) {
I have an XML document like this: <xml> <item> <title>Article 1</title> <text><![CDATA[Lorem ipsum dolor
I have three DIVs, something like this: <div id=header> ... </div> <div id=content> <div
I have a page which essentially looks like this: <div id=foo> <a>One</a>, <a>Two</a>, <a>Three</a>,
When you have a loop through all iframes in a page like this: HTML:

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.