JavaScript - Find And Highlight Search Text
Submitted by razormist on Tuesday, August 6, 2019 - 19:04.
In this tutorial we will create a Find And Highlight Search Text Using JavaScript. This code will highlight the important string base on the inputted keyword in the text box. The code use jQuery plugin .on('keyup') function to trigger a certain method that will highlight a string and mark a background color on it using RegExp() by adding pattern and attributes.
There you have it we successfully created a Find And Highlight Search Text using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!
Getting started:
This is the link for the bootstrap that has been used for the layout of the application https://getbootstrap.com/. And this is the link for the jquery that i used in this tutorial https://jquery.com/.The Main Interface
This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- <style>
- .highlight{
- background:lightblue;
- font-weight:bold;
- }
- </style>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- </div>
- </nav>
- <div class="col-md-6 well">
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-4">
- <div class="form-group">
- <input type="text" id="keyword" class="form-control"/>
- </div>
- </div>
- <div class="col-md-8">
- <p>It appeared that the Traveller had responded to the invitation of the Commandant only out of politeness, when he had been asked to attend the execution of a soldier condemned for disobeying and insulting his superior. Of course, interest in the execution was not very high even in the penal colony itself.</p>
- </div>
- </div>
- </body>
- </html>
Creating the Script
This code contains the script of the application. This code will find and highlight a string that have been inputted. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js folder.- function searchHighligh(keyword){
- if(keyword){
- var content = $('p').text();
- var searchText = new RegExp(keyword, "ig");
- var matches = content.match(searchText);
- if(matches){
- $("p").html(content.replace(searchText, function(match){
- return "<span class='highlight'>"+match+"</span>";
- }));
- }else{
- $('.highlight').removeClass('highlight');
- }
- }else{
- $('.highlight').removeClass('highlight');
- }
- }
- $(document).ready(function(){
- $('#keyword').on('keyup', function(){
- searchHighligh($(this).val());
- });
- });
Add new comment
- 476 views