8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
|
(function($) {
|
||
|
$(document).ready(function() {
|
||
|
$('._expandable_site_item').click(function() {
|
||
|
alert('expand');
|
||
|
});
|
||
|
});
|
||
|
})(jQuery)
|