Hello,
I have an application in Delphi that generates an HTML code from some of the user's registry.
I mount a menu tree and sub-menus into HTML, but when there are many menus in the main root, the sub-menus open behind the main root menus...
In my code I have a materialize lib but it starts to apply css that I do not want in a certain part of my code, is there a way to "lock" it in that particular part?
To contextualize:
I have a "log" object, which was declared in an HTML page through thymeleaf:
<html xmlns:th="http://www.thymeleaf.org" th:include="layout :: page">
...
<form class="form-inline" action="#" th:action="@{'log/'...
See the following code snippet below:
var element = document.getElementById('myDiv');
console.log('element: ', element);
console.log('has tagName property: ', element.hasOwnProperty('tagName'));
console.log('all properties: ', Objec...
The tooltip usually appears when I hover the mouse over the button, but when I click the button and drag the mouse out of the button the tooltip gets stuck.
<button type="button" class="btn btn-default fa fa-angle-left fa-2x" data-toggle="t...
I'm implementing a Drag and Drop scheme in my project, as in the example below:
var holder = document.getElementById('holder'),
tests = {
filereader: typeof FileReader != 'undefined',
dnd: 'draggable' in document.createE...
Good evening people, so .. I have an ajax code that catches a loop inside a php file and then inserts the result into an html page. So far, everything works. The problem is at the time I want to manipulate some class that was entered using .html...
How can I make an effect when hovering over the image, lowering a box below that image?
Ps: Similar to MENU when mouseover
<a target="_blank" href="cadastro" ><img src="https://cssreference.io/images/css-reference-icon.png"style="...
I have a SPA made with pure javascript, and I needed to change the meta description after an event, for example, a click.
Using javascript I can change, but I think that for the Google crawler this does not make any difference.
Is this cor...
To contextualize :
There is a remote directory, clearing-dit\logs , which has a series of logs ( portal.log , test.log , ...). This directory is mapped to an HTML page, where all its .log's are displayed. Once one of...