All Downloads are FREE. Search and download functionalities are using the official Maven repository.

res.vminspect.js Maven / Gradle / Ivy

Go to download

An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface

There is a newer version: 2.1.1
Show newest version
// Simple function to show or hide the element with the given id
function showHide(id) {
  if (document.getElementById(id).style.display=='none') {
    if (document.getElementById(id + 'Img') != null) {
      document.getElementById(id + 'Img').src='?resource=bullets/minus.png';
    }
    document.getElementById(id).style.display='inline';
  } else {
    if (document.getElementById(id + 'Img') != null) {
      document.getElementById(id + 'Img').src='?resource=bullets/plus.png';
    }
    document.getElementById(id).style.display='none';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy