Jump to content

Syntax Highlighter in HTML


Shrigiri

Recommended Posts

Hi

I am New to HTML

W3 Schools  syntax highlighter is easy to use  https://www.w3schools.com/howto/howto_syntax_highlight.asp

Here w3 using     "w3CodeColor(document.getElementById("myDiv"));" 

am using more codes in my notes instead of number of ids how a Single Class can be used?

"w3CodeColor(document.getElementsByClass("myDiv"));"  like this.

Thank u

Link to comment
Share on other sites

If you have multiple elements, you have to call the function multiple times. It could be done in a loop.

var elements = document.getElementsByClassName("myClass");
for(var i = 0; i < elements.length; i++) {
  w3CodeColor(elements[i]);
}

 

  • Thanks 1
Link to comment
Share on other sites

  • 4 weeks later...
On 9/5/2020 at 11:23 AM, Ingolme said:

If you have multiple elements, you have to call the function multiple times. It could be done in a loop.


var elements = document.getElementsByClassName("myClass");
for(var i = 0; i < elements.length; i++) {
  w3CodeColor(elements[i]);
}

 

Thank u For your valuable reply.

I don't have knowledge of script writing,  could you please alter the code.

it would be more helpful.

Thank you

Syntax.html

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...