13 lines
397 B
HTML
13 lines
397 B
HTML
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="./plugin_capture_screen.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('[data-tooltip]').simpleTooltip({
|
|
color: '#ffffff',
|
|
backgroundColor: '#000000',
|
|
position: 'bottom'
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<button data-tooltip="This is a tooltip">Hover me</button> |