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

  • Home
  • SEARCH
  • 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 206475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:38:58+00:00 2026-05-11T17:38:58+00:00

As you can see on http://jsbin.com/erivi/ I’m using Jquery to change some image (and

  • 0

As you can see on http://jsbin.com/erivi/ I’m using Jquery to change some image (and image attribute) depending on radio button selected, I’m also removing form text when clicking inside it.

And now what I’m trying to do is to change the text of the form depending on the radio button checked.

For example when clicking on "Choice 3" we should see "Text of input 3".

You can see & edit my code live here: http://jsbin.com/erivi/edit

The part I need to improve is:

  imgFldr = 'http://download.kde.org/khotnewstuff/icons/previews/'; 
$("input[type='radio']").click(function() { 
   var strarr = this.title.split('|'); 
   if(strarr.length < 2) return; 
   $('#'+this.name).attr('src', imgFldr+strarr[0]).attr('alt', strarr[1]).attr('title', starr[2]); 
}); 

And particularly .attr('title', starr[2]); which is supposed to change title depending on the 3rd part of my radio title (exemple: title='m602-1.png|Logo 3|Text of input 3' )

Thanks 🙂

Edit: I forgot to mention that I’m using several forms on my real code, that’s why I’m looking for a way to do this without the particular name of the text input in order to avoid repeating script for other text input.

  • 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-11T17:38:58+00:00Added an answer on May 11, 2026 at 5:38 pm

    EDIT: The id of the input textbox has to be unique. Additionally, you need to set .attr('title',strarr[2]), .val(strarr[2]) and the hint class inside the radio button’s click event. Also some changes need to be made to your inputdynvalue plugin.

    Please see the complete updated working code at http://jsbin.com/akawo

    Updated Plug-in code

    (function($) { 
        $.fn.inputdynvalue = function (options) { 
            var opts = $.extend({}, $.fn.inputdynvalue.defaults, options); 
            return this.each(function(){ 
                var hvalue = opts.htext; 
                switch (opts.htext) { 
                    case 'title' : hvalue = $(this).attr('title'); break; 
                    case 'value' : hvalue = $(this).attr('value'); break; 
                } 
                $(this).attr('value', hvalue).addClass(opts.hclass) 
                .unbind('focus blur') 
                .bind('focus', function() {                       
                    if (this.value === this.title) { 
                        this.value = ''; 
                        $(this).removeClass(opts.hclass); 
                    } 
                }) 
                .bind('blur', function() { 
                    if (this.value === '') { 
                        this.value = this.title; 
                        $(this).addClass(opts.hclass); 
                    } 
                }); 
            }); 
        }; 
        $.fn.inputdynvalue.defaults = { 
            htext: 'title', 
            hclass: 'hint' 
        }; 
    })(jQuery); 
    $(document).ready(function(){ 
        $("input[type='text']").inputdynvalue(); 
    });
    

    Updated Radio Button Click Event Handler

    $("input[type='radio']").click(function() { 
       var strarr = this.title.split('|'); 
       if(strarr.length < 2) return; 
       $('#'+this.name).attr('src', imgFldr+strarr[0]).attr('alt', strarr[1]); 
       $('#'+this.name+'_text')
          .attr('title',strarr[2])
          .val(strarr[2])
          .addClass('hint'); 
    }); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

alt text http://barbarosalp.com/questions/list.png Hi, As you can see on the picture above i have
I'm making a menu in jquery. You can see it at http://mywash.dk/testtest/index.html The submenu
I think this property is quite useful, http://www.w3schools.com/Dom/prop_document_xml.asp But as you can see, it's
I can see some options available: 1) Use PEAR's POP3 class --> tried it,
I can see people asking all the time whether multiple inheritance should be included
We can see in a directory files ordered by Name in Windows Explorer. If
I can see line numbers in my error logs in our development environment, in
I can see in the postgresql logs that certain simple queries (no joins and
As you can see this is a question from a non web developer. I
As you can see below, in the constructor I'm instantiating a validation object so

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.