5 lines
138 B
JavaScript
5 lines
138 B
JavaScript
jQuery(document).ready(function($) {
|
|
$('body').on('click', '.acc-tile-btn', function() {
|
|
alert('Button clicked!');
|
|
});
|
|
}); |