Skip to content

Tag: html

how can change the image card in bootstrap?

I just need help how can I get different image for this. I keep getting the same copied image I want the id 1 to have different image. thank you I want to present this as my defense in class. Answer It’s because your img src is hard coded to pet3.gif. You probably want to assign a variable name to

CSS box model issue

I have been trying to figure out the CSS for one of my projects. I have a class ‘header-container’ applied to the div container which on checking is as follows – I have a query on why are the contents of the ‘wrapper’ div which is the child of ‘header-container’ div, …

How to customize Dropzone js?

How do I customize Dropzone js? I searched for hours, but only gone in loops. I’m trying to go from this… To something like this… I don’t need the background or any fancy styles, and the functionality already works. I Just mainly need the files to be like they are in the red box. But I…

img tag removing slashes from the src

the problem I’m facing is that I get a image URL from an input tag then storing it in a let then I create a li tag with an image tag in it. I put imageURL variable in the src but the image tag removes the slashes from the variable Answer Note that has special meaning. So you need

Button value output in console.log with JS

I’m fairly new to HTML and JS. I need the value of my HTML button to show in the console.log with JS. I dont want to use onclick=”…” though. This is part of my HTML file: This is my JS file: Answer 1) You have to add event listener on the html element not on the value of that element.

How to override div onClick event when button is clicked?

I am trying to stop the parent div from executing an onClick event when the child Delete button is clicked. I tried to implement event.stopPropogation however, it gives me an error. Answer In case anyone has the same problem as me, simply use e.stopPropogation(). This stops the click event from bubbling up to…