Coding Master
10.9K subscribers
288 photos
13 videos
220 files
3.1K links
ADMIN : @Coding_Master 👨🏼‍💼

Hello guys, I Created This Telegram Channel To Share Useful Content On Web Development & Programming.

👉 Free Ebooks
👉 Free Tools & Resources Links
👉 Free Projects Source Code

So Stay Tuned With Us & Keep Learning 😉
Download Telegram
Program to change style of a text at runtime.

<script>
function chngstyle()
{
document.getElementById('div1').style.color = "Red"
document.getElementById('div1').style.backgroundColor = "yellow"
document.getElementById('div1').style.width = "100"
document.getElementById('div1').style.height = "100"

}
</script>

<div id="div1"> Welcome to all </div>

<input type="button" value="Click" onclick="chngstyle()">
In JavaScript same variable can be used for different types. True or False?
Anonymous Quiz
69%
True
31%
False
🔰 CSS Basic Quiz

Browser adds some default stylesheets. True or False?
Anonymous Quiz
80%
True
20%
False
8 best CSS Sliders for web developers to enhance your projects 👇👇
Coding Master
Social Media Icons 3D Glitch Effect.zip
Source Code File 👆👆👆
Program to change color of the text box if empty string submitted.

<script>
function funup(val)
{
if(val.length>0) document.getElementById('t1').style.borderColor="silver";
}
function fun1()
{
txt=document.getElementById('t1').value if(txt.length == 0) document.getElementById('t1').style.borderColor = "red"
}
</script>

<input type="text" id="t1" onkeyup="funup(this.value)">
<input type="button" value="Submit" onclick="fun1()">
Mark the data type recognized by JavaScript ??
Anonymous Quiz
64%
Boolean
20%
Null
11%
Char
5%
Double
Ultimate List Of CSS Properties.pdf
175.5 KB
The Ultimate List Of All CSS3 Properties