Javascript Course

- Select the content of DIV by ID
- Select content of multiple elements with same class

This article shows you how to select the content added into HTML elements: input text field, textarea, DIV, and ather html elements.

Select text in input and textarea fields

It is simple to select the text added into an input text field or into a textarea, just apply the select() method to the input or textarea element.
element.select()
Example. When click on an input text field or textarea, selects its content.
<form action="#" method="post">
 <input type="text" name="inp1" id="inp1" value="Click to select" /><br/>
 <textarea name="txta1" id="txta1" cols="20" rows="3">Click to select</textarea>
</form>

<script>
// registers on click event to select #inp1 field data
document.getElementById('inp1').addEventListener('click', function(e){
  e.target.select();
});
  /* e.target is the the clicked element */

// registers on click event to select #txta1 textarea data
document.getElementById('txta1').addEventListener('click', function(e){
  e.target.select();
});
</script>
- Demo. Click on the input text field and textarea.

Select the content of DIV by ID

If you want to select all the content added into a DIV (or other HTML tag, like <span>, <li>, <blockquote>, etc.), use theselectElmCnt() function, presented below.
- This function receives an object with the element you want to select.

Code of the theselectElmCnt() function
// selects the content of an element. Receives the object with that element
function selectElmCnt(elm) {
  // for Internet Explorer
  if(document.body.createTextRange) {
    var range = document.body.createTextRange();
    range.moveToElementText(elm);
    range.select();
  }
  else if(window.getSelection) {
    // other browsers
    var selection = window.getSelection();
    var range = document.createRange();
    range.selectNodeContents(elm);
    selection.removeAllRanges();
    selection.addRange(range);
  }
}
- Example. When click on the text added into a DIV, selects all its content.
<div id="exdv1">
 Courses for Web Programming and Development: https://CoursesWeb.net<br/>
 <span>Other line with child element.</span>
</div>

<script>
// selects the content of an element. Receives the object with that element
function selectElmCnt(elm){
  // for Internet Explorer
  if(document.body.createTextRange) {
    var range = document.body.createTextRange();
    range.moveToElementText(elm);
    range.select();
  }
  else if(window.getSelection) {
    // other browsers
    var selection = window.getSelection();
    var range = document.createRange();
    range.selectNodeContents(elm);
    selection.removeAllRanges();
    selection.addRange(range);
  }
}

// registers on click event to use the selectElmCnt() function whewn click on #exdv1 div
document.getElementById('exdv1').addEventListener('click', function(){
  selectElmCnt(this);
});
</script>
Demo (click the text):
Courses for Web Programming and Development: https://CoursesWeb.net
Other line with child element.

Select content of multiple elements with same class

To select the content of multiple elements with same class, use querySelectorAll() to get an array with those elements, then, traverse the array and register "click" to each item, that calls the selectElmCnt() function presented above.
- Example:
<div class="excls">Click to select - Simple Div</div>
<pre class="excls">Content in PRE tag</pre>
<div class="excls">Another Div with same class</div>
<blockquote class="excls">Content in a blockquote html tag.</blockquote>

<script>
// selects the content of an element. Receives the object with that element
function selectElmCnt(elm) {
  // for Internet Explorer
  if(document.body.createTextRange) {
    var range = document.body.createTextRange();
    range.moveToElementText(elm);
    range.select();
  }
  else if(window.getSelection) {
    // other browsers
    var selection = window.getSelection();
    var range = document.createRange();
    range.selectNodeContents(elm);
    selection.removeAllRanges();
    selection.addRange(range);
  }
}

//get array with all .excls elements
var excls = document.querySelectorAll('.excls');

//register click to each excls item that calls selectElmCnt()
for(var i=0; i<excls.length; i++){
  excls[i].addEventListener('click', function(){
    selectElmCnt(this);
  });
}
</script>
- Demo (click on these texts):
Click to select - Simple Div
Content in PRE tag
Another Div with same class
Content in a blockquote html tag.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag adds an image in web page?
<div> <img> <span>
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which of these CSS codes displays the text oblique?
font-style: italic; text-decoration: underline; font-weight: 500;
#id {
  font-style: italic;
}
Click on the jQuery function used to hide with animation a HTML element.
click() hide() show()
$(document).ready(function() {
  $(".a_class").click(function(){ $(this).hide("slow"); });
});
Click on the correctly defined function in PHP.
fname function() {} function fname() {} function $fname() {};
function fname($a, $b) {
  echo $a * $b;
}
Select the Content of HTML Element

Last accessed pages

  1. Get Time Elapsed (1884)
  2. Star shapes with CSS (11169)
  3. Calling Function and Class Method with Name from String (5745)
  4. The Prayer of the Frog (2052)
  5. jQuery Drag and Drop Rows between two similar Tables (12802)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (317)
  2. Read Excel file data in PHP - PhpExcelReader (115)
  3. The Four Agreements (96)
  4. PHP Unzipper - Extract Zip, Rar Archives (91)
  5. The Mastery of Love (85)
Chat
Chat or leave a message for the other users
Full screenInchide