Skip to content

Instantly share code, notes, and snippets.

View Hacking-NASSA-with-HTML's full-sized avatar
🚀
Dream big and work hard. You can get anything you wish for!

Vyacheslav Plekhanov Hacking-NASSA-with-HTML

🚀
Dream big and work hard. You can get anything you wish for!
View GitHub Profile
@Hacking-NASSA-with-HTML
Hacking-NASSA-with-HTML / script.js
Last active December 17, 2022 21:44
How to change color and font-size using jQuery JavaScript library
setTimeout('makeRedAndBig()', 2000)
let makeRedAndBig = function () {
$('div.test').css({
color: 'red',
fontSize: '20px'
})
}