💻Examples
Installation example:
<head>
<script src="https://cdn.jsdelivr.net/gh/proudparrot2/quick.js/quick.js"></script>
</head>
<body>
<script>
// code goes here
</script>
</body>
Changing a text color:
<p id="changeToRed">I will be changed to red!</p>
<script>
// one way to do it
_.setCSS("#changetoRed", "color", "red")
// another way, if you already
// have your element stored in a variable
var changeClr = _.get("#changeToRed")
_.setCSS(changeClr, "color", "red")
</script>
Last updated