0
What are non-visual HTML elements?
16 ответов
+ 3
D'lite Your keyboard/mouse movements can be intercepted by JS which in-turn can manipulate the DOM. The rendering engine is the heart of the browser. Different engines (WebKit vs. Gecko) can produce different outputs.
You can learn more here:
https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Introduction
+ 2
<meta> <head> <script> etc. Pretty much anything that goes inside of the head is invisible as well.
+ 2
Cheers all.
https://www.sololearn.com/learn/JavaScript/2752/
+ 1
What do you mean by non visual? Almost any element can be programmed to have a visual effect. Do you mean elements that don't effect the DOM like heading tags?
+ 1
ahh, got it! Apparently, that's what I meant*)
+ 1
The DOM is your browser's output from the code you wrote.
+ 1
D'lite Not really. Lots of things can affect the DOM. The DOM is basically how the page is rendered in real time. Mouse movement, JS, keyboard input, the rendering engine, and the browser's error correction can affect the DOM.
+ 1
Ben Allen (Njinx)
How on earth does Rendering engine,keyboard, mouse movement affect the DOM.
i won't believe, until you give me a link to where you got this kind of info
+ 1
D'lite The DOM can be manipulated by JS. The popular jQuery was actually built for the very purpose of making DOM manipulation easier.
+ 1
Ben Allen (Njinx) I didn't ask of Javascript, I asked of
1.Rendering engine
2.Keyboard
3.Mouse movements
+ 1
Семён The rendering engine takes the markup and converts in into a map of the website, this is call the DOM. With the map it then draws everything on to the screen based on things like the CSS rules.
0
I'm sorry, but what is DOM?:)
0
document object model, you're basically treating the webpage as an object with properties
0
so DOM basically determines what webpage looks like,right?
0
Семён No sir,
DOM just shows you how elements are related to each other in your website..
It's HTML and mostly CSS that determines what your websites look like
0
Umm,guys, how does work the rendering engine?
I feel like I still haven't got it...
A rendering engine interplays with DOM,right?
But in what way?