I’m working on a website and I need to create a two column table (one column for images, the other for text) within a single tooltip. The purpose of the tooltip is to bring up a quick guide for reference, featuring an image of a product with its title. To take it a step further, I’d love to have t…
Tag: html
Code corresponding to navbar slider in mobile-view isn’t working as intended
I am currently in the process of coding my navbar for the mobile viewport. I did some searching and I thought I had a solution, but it turns out the solution isn’t working at all. I’m trying to make it so that when the nav burger in the navbar is clicked/ tapped, the navigation options slide in to…
React App – My alert window is showing up twice
I don’t understand why this is happening – I have an app that increments and decrements a counter when the buttons are pressed to display an increasing list of easter egg brands from a collection. When the counter reaches the max number of eggs in the collection I want a popup to appear saying …
Load data from firebase to HTML table
I have a FireBase realtime DB with some data that I would like to display in HTML grid. Structure of the DB is pretty simple: What I want to do is to have “id”, “First column”, “Second column”, “Third column” as a column headers and data from DB to be displayed …
How can I get the name of the class of the td element in the same row of a table using attribute, from javascript [closed]
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago. Improve this question I am trying to get the name of the classname assigned to the td element in…
How to execute a javascript function in a new window on a buttonclick in html
How to call a javascript function(Jitsi Meet API) on button click and open the result(meeting) in a new window, in this case the function has to open up a new Jitsi meeting I have a javascript function that calls the Jitsi Meet API and opens up or launches a new meeting on button click? As of now, the meeting…
javascript ondrag when pressing itself
Inside the div I have a set of p elements. I want to drag the selected element to the input Example: I want to transfer the text from the p element to the input when dragging, but in a multiple way, for all the p elements How, when dragging any of the multiple elements, get the text from the p
Horizontal scroll jquery-mousewheel library function errors (ex: this. on is not a function)
I am trying to create a horizontal scrolling website and I was following this tutorial which uses this library; however I get a “this.on is not a function” or a similar error where something is not a function. I have tried rotating my webpage but it just messes everything up (href anchors don̵…
Jquery call function on hover if element is of class A but not class B
I want to call a function when hovering over elements with a specific class attribute, but not another. I feel like the :not selector should work, but it is still firing for all elements of class A. I have elements with a specific class .sidebar-section, but one of them has another class attribute .show, I wa…
Vue v-for not update model variable
i try to render page with dynamic properties. my code script is i want to p tag with different color and container object text via currentObject but when render the page, computed act likes current is 0 always. output is blue and text from currentObject is “Dabodee Dabodai” what am i doing wrong? …