4

Here my html code

<a href="myfile.html" id='tagId'>Old File</>

I want to change the value of tag with name "New File"

So i wrote javascript like document.getElementById("tagId").value='New File';

I thought output like <a href="myfile.html" id='tagId'>New File</a>

But it's not working .can anyone help ?

iCollect.it Ltd
  • 92,391
  • 25
  • 181
  • 202
Madhu Sudhan Reddy
  • 607
  • 5
  • 15
  • 22

5 Answers5

15

Use .innerHTML or .innerText

document.getElementById("tagId").innerHTML="new File",

OR

document.getElementById("tagId").innerText="new File",

OR Note: Not all browsers support innerTEXT, so use textContent if you want to change the text only,

Reference Stack overflow answer

So like @Amith Joki said, use like

 document.getElementById("tagId").textContent="new File",

Since <a> tag doesn't have value property, you need change the html of anchor tags.

Using Jquery

$("#tagId").html("new File");

OR

$("#tagId").text("new File");

Edit

If you want to change the href using javascript, USe like this

 document.getElementById("tagId").href="new href";

USing jquery,

$("#tagid").attr("href","new value");
Community
  • 1
  • 1
Anoop Joshi P
  • 25,373
  • 8
  • 32
  • 53
4

You can use .html() to get/set html:

 $('#tagId').html('New File')

OR

 $("#tagId").text("new File");
iCollect.it Ltd
  • 92,391
  • 25
  • 181
  • 202
Milind Anantwar
  • 81,290
  • 25
  • 94
  • 125
3

Use .textContent properties to set the text of <a>.

document.getElementById("tagId").textContent ="new File"
Amit Joki
  • 58,320
  • 7
  • 77
  • 95
  • @TrueBlueAussie ah! Those upvotes don't count now. I've reached 200 limit already :( – Amit Joki May 29 '14 at 14:15
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/54727/discussion-between-amit-joki-and-trueblueaussie). – Amit Joki May 29 '14 at 14:20
0

use this:

$("#tagid").text("New File");
Somnath Kharat
  • 3,570
  • 2
  • 27
  • 51
0

Here is simple code

<script>
    $("tagId").html("new File");

</script>
Adarsh Gowda K R
  • 941
  • 8
  • 15