Skip to content

Tag: html

publish connected webpages project [closed]

Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 1 year ago. Improve this question I built a web-based GUI, and I used localhost/its_name to view and dev…

Unicode symbol not showing up in Android – Chrome

I am trying use unicode symbol in one of the pages in my app, currently facing a issue where the symbol doesnt show up in mobile / andorid – chrome browser it shows empty box instead (No glyph found symbol). Works perfectly in desktop – chrome browser. (Added screenshots below). I am trying to use…

How to prevent dragging of an element inside a ?

I am building an editor that uses an SVG element as the canvas. It provides custom drag-and-drop behavior to drag elements inside the svg around. However, when I try to drag an <image> tag, the native browser drag behavior where you’re dragging a “ghost” of the image kicks in. How do I…

How to highlight and select multiple rows?

I would like to be able to perform similar operation to Excel where users can highlight and select multiple rows: [] Here is an example where a user can click on the row and the row gets selected. But I want the green outline similar to Excel to be applied to my Bootstrap table. Ideally, there would be an opt…

Target Elements without specific className

I’m new to JS, but I was hoping there might be a selector like document.getElementsByClassName(“div:not(div-1)”) that selects elements by class name, unless they also have another class name, that I can define. Basically my project is a list of movies and their genres. Using an onclick funct…