Skip to content

Instantly share code, notes, and snippets.

View mkhuda's full-sized avatar
🎯
Focusing

Lek Huda mkhuda

🎯
Focusing
View GitHub Profile
@mkhuda
mkhuda / jquery-alpine-comparison.html
Created October 9, 2025 22:35
jQuery vs Alpine.js Comparison
<!-- jQuery version -->
<div id="jquery-example">
<button id="btn-jq">Toggle jQuery</button>
<div id="box-jq" style="display:none;">Halo dari jQuery!</div>
</div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script>
$('#btn-jq').click(function() {
$('#box-jq').toggle();