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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:07:00+00:00 2026-05-15T19:07:00+00:00

I am looking for some help. I have found this script that sort of

  • 0

I am looking for some help. I have found this script that sort of solves my problem 50% – I want to click on a word and delete the word using jquery similar to the example below. If using the example below it will highlight the word that you click on.

<!DOCTYPE html>
<html>
<head>
  <style>
  p { color:blue; font-weight:bold; cursor:pointer; }
  </style>
<script type="text/javascript" src="/js/jquery-1.4.2.min.js"></script></head>
<body>

<p>
  Once upon a time there was a man
  who lived in a pizza parlor. This
  man just loved pizza and ate it all 
  the time.  He went on to be the
  happiest man in the world.  The end.
</p>
<script>
  var words = $("p:first").text().split(" ");
  var text = words.join("</span> <span>");
  $("p:first").html("<span>" + text + "</span>");
  $("span").click(function () {
    $(this).css("background-color","yellow");
  });
</script>
</body>
</html>

How would I delete/remove the word by clicking on it.

I also found this sample to replace a word with a word.

var el = $('#id');
el.html(el.html().replace(/word/ig, ""));

Is there anybody that can help me tie it together so that when I click on the word it replaces the word. It can also maybe replace the word with something like [Delete] and I can strip it out with a regex on a form submit?

Ok I have sort of figured it out by replacing

$("span").click(function () {
        $(this).css("background-color","yellow");
      });

$("span").click(function () {
    $(this).remove();
  });

This brings me to the next question.

How can I update the results to a form text field?

Updated example from tip below

  <form id="form1" name="form1" method="post" action="spin1.php">
  <p><%=(Recordset1.Fields.Item("g_article_desc_spin").Value)%></p>
<textarea name="myfield" id="myfield" onFocus="this.blur();" cols="45" rows="5"></textarea>
<script>
  var words = $("p:first").text().split(" ");
  var text = words.join("</span> <span>");
  $("p:first").html("<span>" + text + "</span>");
$("span").click(function () { 
    $('myfield').val($(this).remove().parent('p').text()); 
});  
</script> 
      <input type="submit" name="button" id="button" value="Submit" />
  </form>

I am still not sure how to update the value in myfield

  • 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-15T19:07:01+00:00Added an answer on May 15, 2026 at 7:07 pm

    When you say “update the results to a form text field” do you mean you want the deleted word to go to a form text field or the resulting paragraph after the text has been removed? If the former:

    $("span").click(function () {
        $('#myfield').val($(this).remove().text());
    });
    

    edit – see comment below
    If the latter:

    $("span").click(function () {
        var $p = $(this).parent('p');
        $(this).remove(); 
        $('#myfield').val($p.text());
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 453k
  • Answers 453k
  • 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 This is about as friendly an introduction as I could… May 15, 2026 at 9:36 pm
  • Editorial Team
    Editorial Team added an answer Remember that this is plain Ruby, so you can simply… May 15, 2026 at 9:36 pm
  • Editorial Team
    Editorial Team added an answer Objective-C has multiple-level dispatch, so it's possible that the method… May 15, 2026 at 9:36 pm

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.