Get in touch with our hands-on, fast and professional Support Team

  • This topic is empty.
Viewing 31 post (of 31 total)
  • Author
    Posts
  • #9683

    Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/u337135316/domains/bzotech.com/public_html/wp-includes/functions.php on line 6131

    Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/u337135316/domains/bzotech.com/public_html/wp-includes/functions.php on line 6131
    David Hoang
    Keymaster

    To change the class you can use following functiionalities:

    HTML:

    <button id="myButton">Click me</button>
    

    Javascript:

    const button = document.getElementById('myButton');
    
    button.onclick = function() {
      button.classList.add('newClass');
    };
    

    CSS:

    .newClass {
        background-color: red;
        color: white;
      }
    
Viewing 31 post (of 31 total)
  • You must be logged in to reply to this topic.