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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T14:14:10+00:00 2026-05-11T14:14:10+00:00

Up until this point, I haven’t done much in javascript. I recently started playing

  • 0

Up until this point, I haven’t done much in javascript. I recently started playing with jQuery and came across a tutorial on how to do Edit in Place on a form.

The resulting code works perfectly if you hard-code the id of your container div in the function, but I’m having issues generalizing it for an id passed in to the function.

The code starts like this:

$(document).ready(function() {     setClickable($('#editInPlace')); });  function setClickable(target) {     $(target).click     (         function()         {             //Do some dom manipulation              $('.buttonA').click(function() { saveChanges(this, false); });             $('.buttonB').click(function() { saveChanges(this, true); });         }     )      .mouseover(function() { $(this).addClass('editable'); })     .mouseout(function() { $(this).removeClass('editable'); }); }; //end of function setClickable  function saveChanges(obj, cancel) {     //Handle the save changes code      //Reset the div     $(obj).parent().after('<div id='editInPlace'>' + t + '</div>').remove();      //Call setClickable     setClickable($('#editInPlace')); } 

The part I’m having issues with is the last call to setClickable inside of the saveChanges function. If I hard-code the value of $('#editInPlace'), it works fine. However, if I change the function signature to

function saveChanges(target, obj, cancel) 

and pass in the target object from the setClickable method:

$('.buttonB').click(function() { saveChanges(target, this, true); }); 

calling

setClickable(target); 

doesn’t seem to work and I can’t figure out why.

  • 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. 2026-05-11T14:14:11+00:00Added an answer on May 11, 2026 at 2:14 pm

    Change:

    function setClickable(target) {     $(target).click     ( 

    to:

    function setClickable(target) {     target.click     ( 

    You’re passing in a wrapped set (also called a jQuery object) and then wrapped it in another wrapped set. The above fixes that. The alternate way to do this is:

    $(document).ready(function() {     setClickable('editInPlace'); });  function setClickable(id) {     $('#' + id).click     ( 

    You see what I’m getting at?

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

Sidebar

Ask A Question

Stats

  • Questions 119k
  • Answers 119k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer That should work, can you clarify what you mean by… May 11, 2026 at 11:48 pm
  • Editorial Team
    Editorial Team added an answer Use isatty(): $ man isatty ISATTY(3) Linux Programmer's Manual ISATTY(3)… May 11, 2026 at 11:48 pm
  • Editorial Team
    Editorial Team added an answer It doesn't seem like this is possible, strangely. As a… May 11, 2026 at 11:48 pm

Related Questions

Up until this point, I haven't done much in javascript. I recently started playing
I'm curious about OpenID. While I agree that the idea of unified credentials is
I'm in the process of trying to hack together the first bits of a
I'm a seasoned desktop developer working in C++/C#/WinForms/etc. Up until this point, I have
I just asked this question . Which lead me to a new question :)

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.