It returns me [object HTMLCollection]
i am trying to replicate a login page and i want that when i click the button it displays the name that you have putted but it returns [object HTMLCollection] I expected to display the name that you putted var…
i am trying to replicate a login page and i want that when i click the button it displays the name that you have putted but it returns [object HTMLCollection] I expected to display the name that you putted var…
I am fairly new to AJAX and struggling with this thing which i believe is rather a problem with toggle.php. I have this code which works for the most part. But when page is reloaded manually and toggle is =…
I have a button that a predecessor created but when viewed on a smartphone or shrunken browser window, the text shrinks and is barely legible. I've also created my own button which doesn't have this issue but I'm trying to…
I tried to make a button that changes a div visibility. Firstly I've add the "onclick" event in the button and code this function: function showElement() { var element = document.querySelector('.blocks-fnd-div'); if (element.style.visibility == 'hidden') { element.style.visibility = 'visible'; }…
I am building a simple password generator where the user clicks on a 'submit' button and is displayed a password based on which input checkboxes are ticked. I currently have 4 pieces of state for each checkbox, and a simple…
I have a set of buttons functioning as "tabs" using anchor tags. The function of the tabs work smoothly, button remain hover untill I click another button. However, all buttons un-hover after I clicked outside of the buttons. How can…
I have a button element in React page. With onclick event I called a function from my context. Now I want to add a href in that button. Here is my code: { categoryData.map((item,index)=>{ return( <button className="dropdown-item" to={/articles/${item}} onClick={updateFilterValue} key={index}…
When you click on a certain button, a certain text is displayed, and when you click on another button, the text changes to another one. The problem is that I need to indicate all possible identifiers of texts that need…
I have successfully made a html page where I am able to create a soundboard of different audio files associated to individual buttons. Each button plays an audio file, and when you click on a different button, the previous audio…
My problem is that I have a form in my HTML that I write to the database after filling it out. The form consists of 7 labels with 7 input fields type='number' It all works so far, but it annoys…