Bro I majorly respect you and I feel like you're working so hard to keep posting content for us. I feel like you should just be free to take a break whenever you feel like it because I know the amount of hard work you put into these videos.
I love how stark you are about the curly brackets. "click, event, do this." It really is as simple as breaking it down into. For the lack of a better phrase, common tongue.
thank you so much!! this helps a lot! my web development has improved significantly ever since i found your channel, and its only going to get better! i love the way you explain and show the code! kudos to you!!
Thank you, these videos have helped me learn JavaScript. Please would you let us know which VSCode extension you're using to pull up your Emoji console... I love what you're doing Thanks Again!
awesome video sir , i always learn something new from your video . btw i have a question sir Whats the difference between using addeventlisterner and using .onclick , .onmouseover etc , its faster to use second option and easier too , event object also works on both methods , so which one should i use
// eventListener = Listen for specific events to create interactive web pages
// events: click, mouseover, mouseout
// .addEventListener(event, callback);
const myBox = document.getElementById("myBox");
myBox.addEventListener("click", event => {
event.target.style.backgroundColor = "tomato";
event.target.textContent = "OUCH! 🤕";
});
myBox.addEventListener("mouseover", event => {
event.target.style.backgroundColor = "yellow";
event.target.textContent = "Don't do it 😲";
});
myBox.addEventListener("mouseout", event => {
event.target.style.backgroundColor = "lightgreen";
event.target.textContent = "Click Me 😀";
});
Document
Click Me 😀
#myBox{
background-color: lightgreen;
width: 300px;
height: 300px;
font-size: 4.1rem;
font-weight: bold;
display: flex;
align-items: center;
text-align: center;
}
yo make more video about how to get a job please
@@masternobody1896 🤣🤣 same
Bro I majorly respect you and I feel like you're working so hard to keep posting content for us. I feel like you should just be free to take a break whenever you feel like it because I know the amount of hard work you put into these videos.
I appreciate that! Tbh I'm mentally exhausted 😩
@@BroCodez Have a break!!! More than enough content to keep us busy for a long while
I love how stark you are about the curly brackets. "click, event, do this."
It really is as simple as breaking it down into. For the lack of a better phrase, common tongue.
the only mentor that made me fall in love with code
thank you so much!! this helps a lot! my web development has improved significantly ever since i found your channel, and its only going to get better! i love the way you explain and show the code! kudos to you!!
Bro Code is the Best Code! Thank you for all that you do. You are a gentleman and a scholar.
Can you do this for Python also?
No I don’t thing so cause it doesn’t have a getelementbyid or getelementbyclass functions
Thank you, these videos have helped me learn JavaScript. Please would you let us know which VSCode extension you're using to pull up your Emoji console... I love what you're doing Thanks Again!
We would love your content. Thank you ❤ sir
your explanation is so good man
awesome video sir , i always learn something new from your video . btw i have a question sir
Whats the difference between using addeventlisterner and using .onclick , .onmouseover etc , its faster to use second option and easier too , event object also works on both methods , so which one should i use
BroCode! lovin your videos!
Any plan to make Zig videos? Looks to be the hype especially since people realizes Bun is made with Zig.
cheers!
how do you toggle between the original state and a custom state?
Bro sorry for my stupid question, but how can I add emojis on the HTML file just like you did at 1:00?
Win + ;
@@BroCodez 🙏
How to add emojis in HTML using VS CODE? Please share thar with us because it is easier than using HTML emojis by using tags
Super Film!
most recent comment
Can you make course for making spigot plugins?
This was awesome
very clear thank you
this is so cute functions xD
This is usefull
Thanks!
Thankyou bro:)
how did you add that emoji on the html page?
press windows button and full stop button combination...you get emojis
Lucky you
btw, is the an easy way to make an undo button?
Ctrl + z my brother lol
Everyone's getting an heart can i too bro?
Code bro😊
Muy buen video, gracias
Buen dia, como hago para que aparezca los emojis?
First
How did you bring the emoji box in vs code ??
windows + "."