Y
Hacker News
new
|
ask
|
show
|
jobs
by
Kiro
1405 days ago
What are you doing with jQuery that you can't easily do in vanilla JS? I understand the argument before we had querySelector, but not now.
1 comments
francisofascii
1405 days ago
JQuery is terse, which helps with productivity.
document.getElementById('id').style.display = 'none' vs $('#id').hide();
link
document.getElementById('id').style.display = 'none' vs $('#id').hide();