Toggle Button Text with JavaScript

In this tutorial we will see how to Toggle Button Text with JavaScript. HTML DOM innerText Property, textContent property and innerHTML can be used for this purpose.

HTML Code

HTML code is given below, in this code we have a button tag with onclick event to trigger a JavaScript function.

<button onclick="toggleText(this)">New</button> 

JavaScript Code

JavaScript Code is given, in this code we have used HTML DOM textContent property, innerText property and innerHTML property.

textContent property sets or returns the text content of the HTML element.

innerText property also sets or returns the text content of the HTML element.

innerHTML property sets or returns the HTML content of the HTML element.

In this example we have used textContent property and innerText property to read the current text of HTML Button, both these properties are used together so that the code works on all browsers.

Then simple if else statement is used to check the text and based on this new text is assigned using innerHTML property.

<script>
function toggleText(event)
{
    var text = event.textContent || event.innerText;
    if(text == 'New')
    {
      event.innerHTML = 'Old';
    }
    else
    {
      event.innerHTML = 'New';   
    }
}
</script>

Demo

Video Tutorial

Watch our video tutorial on Toggle Button Text with JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript