I’m a beginner in programming and today I need your help!(please :'() I want to create a survey,so I begin to code and a error appear and I search a lot in internet but no solution. There are my html and js codes. Answer You did not specify an incomplete call to the selector – getElementById(̵…
Tag: html
How do I implement a button, that checks if the fields in a document are not empty? JavaScript
I want to write a JavaScript function, that checks if the fields in the following HTML document are not empty. I do not want a prompt for every information but instead I want to implement a button at the end, that checks every field and returns a message that tells you which fields are still not filled. I sta…
SVG progress circle image rotation orientation
I am trying to create a circular progress bar (as seen in the image below). The progression is based on percentages and will move round the circle to that percentage. I have the progression moving round but the icon which moves with it needs to have the correct orientation. as the image bellow the images bott…
How to append html tag after div?
I want to append a <br> after a <div>. My code I have this result The <br> append after the div.scene but I want the <br> append after the “div.block” + i. Answer The issue is this line: which, as stated in the jquery wrapAll doc does: The structure will be wrapped around a…
How can I use the CSS hidden property to redirect to a new page?
so I’ve coded a questionnaire and I’m running into an issue. When a user clicks submit the questionnaire the results are displayed near the submit button I was hoping for them to be redirected to a new page (where results are displayed) by using the CSS hidden property, but I don’t understan…
css for a specific table header
I have a table implemented using a third party library. There i have something like the below code when inspecting the elements. I want to write a css class for th where colspan=”3″ . The colspan=”3″ part is the only difference between the code blocks. How do i write a custom class to …
Continue loop through all tbody element and add id to all tr’s
I have many tables and I want to give all tr’s individual ids. I loop through all tbody but it only affects first tbody, not all of them. When I add loop indicating each tbody they work. Is there any efficient way available to loop through all tbody and give the tr’s individual id. I want to do it…
How to show bootstrap-5 modals position dynamically on its trigger, for each trigger
How to show bootstrap-5 modals position dynamically? I am trying to create a Google calendar clone, suppose.. when we have more events on 28th and if we click on 4 more as shown in the below image then that modal should be open on the Wed 28th to its dedicated box, not in the center or any other place. DEMO
Why can’t I click on links on mobile device? The problem is probably in Javascript [closed]
Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 2 years ago. Improve this question I wan…
How to change the style of HTML list items using setInterval in JavaScript?
I have a HTML code with 3 list items and the ids for my ul is ‘exercise6-list’ I need to make each li glow for three seconds and repeat itself So far I have written: *I’m very new to programming, but thank you for your help Answer To make a timed function we use setInterval, and add the clas…