Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mininxd authored Jan 13, 2024
1 parent e2f92eb commit be57e4f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ $('#percentEl').on("click", function() {
$('#rumusEl').append("%");
})

$('#multiEl').on("click", function() {
$('.footer').html("masih dalam tahap pengerjaan");
$('.footer').css("color", "#f00");
$('.footer').css("opacity", "1");

setTimeout(function() {
$('.footer').html("mininxd");
$('.footer').css("color", "#000");
$('.footer').css("opacity", "0.4");
}, 2000)
})



$('#tambahEl').on("click", function() {
Expand Down

0 comments on commit be57e4f

Please sign in to comment.