Posts

Showing posts from December 22, 2018

Televisão de alta definição

Image
As principais resoluções de tela para televisão A televisão de alta definição (em inglês high-definition television , sigla HDTV ), é um sistema de transmissão televisiva com uma resolução de tela significativamente superior à dos formatos tradicionais (NTSC, SECAM, PAL). Com exceção de formatos analógicos adotados na Europa e Japão, o HDTV é transmitido digitalmente e por isso sua implementação geralmente coincide com a introdução da televisão digital (DTV): esta tecnologia foi lançada inicialmente nos Estados Unidos durante a década de 1990 por um consórcio envolvendo AT&T, General Instrument, MIT, Philips, Sarnoff, Thomson e Zenith. [ 1 ] Apesar de vários tipos de televisão de alta definição terem sido propostos ou implementados, os formatos HDTV atuais são definidos pelo ITU-R BT.709 como 1080i ( interlaced ), 1080p ( progressive ) ou 720p usando uma proporção de tela de 16:9. O termo "alta definição" pode se referir à própria especificação da resolução ou ma

Can you retrieve the value from an attribute as it appeared in the source?

Image
2 Commenting on this question made me wonder. In JavaScript, is it possible to get the "raw" value of a HTML attribute, i.e. the way it was written in the source before parsing? Say you have this HTML: <section id="theSection" title="The section">The section</section> <script> console.log(document.getElementById('theSection').title); </script> What do I need to write in the script to make it output the original escaped value of the title, rather than the parsed one? JavaScript nodes have a lot of properties and values, but in this case, none that say "The section" instead of "The section" . javascript html dom