forked from qt-creator/qt-creator
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
|
|
$(document).ready(function () {
|
||
|
|
$("div").mousedown(function () {
|
||
|
|
$(this).hide(400);
|
||
|
|
});
|
||
|
|
$(".div").click(function () {
|
||
|
|
$(this).hide(400);
|
||
|
|
});
|
||
|
|
});
|