Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Dennis Lee Bieber Newsgroups: comp.lang.python Subject: Re: How to see html code under the particular web page element? Date: Sat, 07 May 2016 15:33:06 -0400 Organization: IISS Elusive Unicorn Lines: 26 Message-ID: References: <5eaf19c1-b57d-4771-859b-ae55972234e8@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de 1cvRKdUAc6jO2nCyWZqzMQPv/qHbEy1k3oTuJhROYaEQ== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'source,': 0.04; 'subject:code': 0.07; 'subject:How': 0.09; 'message-id:@4ax.com': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; '2016': 0.16; '>on': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'subject:under': 0.16; 'element': 0.18; 'subject:page': 0.18; 'url:home': 0.18; 'developer': 0.20; 'text,': 0.22; '(or': 0.23; 'sat,': 0.23; 'header:X-Complaints-To:1': 0.26; 'dom': 0.29; 'inspect': 0.29; 'code:': 0.29; 'source': 0.33; '-0700': 0.33; 'displayed': 0.33; 'open': 0.33; 'server': 0.34; 'text': 0.35; 'but': 0.36; 'there': 0.36; 'to:addr:python-list': 0.36; 'subject:?': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'charset:us-ascii': 0.37; 'difference': 0.38; 'files': 0.38; 'subject:the': 0.39; 'to:addr:python.org': 0.40; 'where': 0.40; 'email addr:gmail.com': 0.62; 'programs': 0.62; 'between': 0.65; 'choose': 0.68; 'picture': 0.70; 'click': 0.76; '>if': 0.84; 'url:hr': 0.84; 'url:show': 0.84; 'dennis': 0.91; 'url:video': 0.91; 'examine': 0.95 X-Injected-Via-Gmane: http://gmane.org/ X-Gmane-NNTP-Posting-Host: adsl-108-73-119-24.dsl.klmzmi.sbcglobal.net X-Newsreader: Forte Agent 6.00/32.1186 X-No-Archive: YES X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: X-Mailman-Original-References: <5eaf19c1-b57d-4771-859b-ae55972234e8@googlegroups.com> Xref: csiph.com comp.lang.python:108288 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: > > > >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/