Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #108288

Re: How to see html code under the particular web page element?

From Dennis Lee Bieber <wlfraed@ix.netcom.com>
Newsgroups comp.lang.python
Subject Re: How to see html code under the particular web page element?
Date 2016-05-07 15:33 -0400
Organization IISS Elusive Unicorn
Message-ID <mailman.466.1462649600.32212.python-list@python.org> (permalink)
References <5eaf19c1-b57d-4771-859b-ae55972234e8@googlegroups.com> <i6gsibpchhp8sj3r67i4vtv3phc29l0v7q@4ax.com>

Show all headers | View raw


On Sat, 7 May 2016 07:27:53 -0700 (PDT), zljubisic@gmail.com declaimed the
following:

>Hi,
>
>on page:
>https://hrti.hrt.hr/#/video/show/2203605/trebizat-prica-o-jednoj-vodi-i-jednom-narodu-dokumentarni-film
>
>there is a picture and in the middle of the picture there is a text "Prijavite se za gledanje!"
>
>If I open the page in firefox and then use menu Tools > Web developer > Page source, there is no such text, but if i right click on the "Prijavite se za gledanje!" and than choose "Inspect element" I get the following html code:
>
><a ng-click="::getBuyOptions()" data-toggle="modal" data-target="#loginModal" class="btn btn-green buy-options sign-in-vod ng-binding">Prijavite se za gledanje!</a>
>
>What is the difference between firfox Page source and inspect element?

	Page source is the "file" that the server sent. Inspect element is the
DOM element manipulated by the various Javascript programs that the page
invokes. You'd have to somehow download each of the .js files and examine
them to find out where (or how) they create the displayed DOM information.


-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
    wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

How to see html code under the particular web page element? zljubisic@gmail.com - 2016-05-07 07:27 -0700
  Re: How to see html code under the particular web page element? Larry Martell <larry.martell@gmail.com> - 2016-05-07 12:37 -0400
    Re: How to see html code under the particular web page element? zljubisic@gmail.com - 2016-05-07 12:27 -0700
  Re: How to see html code under the particular web page element? Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2016-05-07 15:33 -0400

csiph-web