I need a little input on the best way to remove a certain word or phrase in a text area. I have an input field entitled input
. I want to search that area for the word that is put into a form field called name
and then removed from input
. None of the code I have tried works, and most search results yield irrelephant.
function delete() {
var name = document.getElementById("name").value;
var textarea = document.getElementById("input").value;
var data = textarea.length;
for (var i = 0; i < data.length; i++) {
if (textarea.substr(i, data) == name) {
textarea.value = "";
}
}
}
What I tried earlier with no luck.
I need a little input on the best way to remove a certain word or phrase in a text area. I have an input field entitled input
. I want to search that area for the word that is put into a form field called name
and then removed from input
. None of the code I have tried works, and most search results yield irrelephant.
function delete() {
var name = document.getElementById("name").value;
var textarea = document.getElementById("input").value;
var data = textarea.length;
for (var i = 0; i < data.length; i++) {
if (textarea.substr(i, data) == name) {
textarea.value = "";
}
}
}
What I tried earlier with no luck.
Share Improve this question edited Jul 5, 2013 at 8:03 Mr_Green 41.9k47 gold badges170 silver badges276 bronze badges asked Jul 5, 2013 at 7:26 Seth EarbySeth Earby 1593 gold badges4 silver badges12 bronze badges 4- 3 and what is the code that you have tried – Satya Commented Jul 5, 2013 at 7:27
- It didn't work and more of just hackjob so it's not much of a starting place. – Seth Earby Commented Jul 5, 2013 at 7:47
- 1 you tagged jQuery... Why don't you use it ? – Brewal Commented Jul 5, 2013 at 8:01
- @Brewal I'm not familiar with jQuery enough to e up with it. But I'm not opposed to using it if it's a relatively easy solution. – Seth Earby Commented Jul 5, 2013 at 9:13
3 Answers
Reset to default 7Not sure what you are trying to do, but this is the correct code: (there are many mistakes in your code)
function deleteValue() { //instead of "delete"
var name = document.getElementById("name");
var textarea = document.getElementById("result"); //intead of "input"
var data = textarea.value;
for (var i = 0; i < data.length; i++) {
if (data.substr(i, data) == name.value) {
textarea.value = "";
}
}
}
Some points to consider:
- Change your text input name from
input
to something else because it is atag name
. - You can't have a function name
delete
because it is a reserved word in javascript. use something else likedeleteValue
.
UPDATE:
I think this is what you are looking for..
function deleteValue() {
var name = document.getElementById("name");
var textarea = document.getElementById("result");
textarea.value = textarea.value.replace(name.value, "");
}
Working Fiddle
You can add replaceAll
function to String object. If you want to remove all occurrences of specific text.
(function() {
if (!String.replaceAll) {
String.prototype.replaceAll = function replaceAll(replace, value) {
return this.replace(new RegExp(replace, 'g'), value);
};
}
}());
And modify delete
function should look like this:
function deleteValue() {
var name = document.getElementById('name');
var textarea = document.getElementById('result');
var data = textarea.value;
textarea.value = textarea.value.replaceAll(name.value, "");
}
This is the jQuery solution (I provide it since you tagged jQuery) :
jsFiddle
// to execute code when the page is entierly loaded
$(document).ready(function(){
// click event on the button
$('#myButton').click(function(){
// get the content of the #result textarea
val = $('#result').val();
// remove all occurence of content of #name in #result
$('#result').val(val.replace($('#name').val(), ""));
});
});