xcat-core/xCAT-web-exp/eventlog.html

12 lines
292 B
HTML
Raw Normal View History

<script type="text/javascript">
$(document).ready(function() {
$("#eventlogbutton").click(function() {
$("#mydisp").text("Would have queried eventlog from "+noderange);
});
});
</script>
<body>
<div id="mydisp"></div>
<button id="eventlogbutton">Get Eventlog</button>
</body>