95 questions
-2
votes
1
answer
85
views
How do I encode a JavaScript file included in HTML? - I get `…` rather than `…`
Attempt:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=...
0
votes
1
answer
50
views
Is there any difference between view-source and queryselector
Introduction
When trying to scrape some data on a third party website realized that if I used document.querySelector had different results from what view-source URI scheme.
Description
The query ...
0
votes
0
answers
51
views
view-source scrape From Excel VBA
view-source:https://www.walmart.com/ip/Rice-Krispies-Treats-Original-Chewy-Crispy-Marshmallow-Squares-Ready-to-Eat-12-4-oz-16-Count/10818666?athbdg=L1600&from=/search
This is the information I am ...
0
votes
1
answer
474
views
Is there a way to disable table row blur ( tr.blur ) from a 3rd party website using DOM editor? [closed]
Is it possible to diable tr.blur using DOM filters ? I tried using ublock origins extension. I could diable the whole row or entry but not the blur only. I want to know if it is possible from a ...
0
votes
1
answer
181
views
Dynamic meta title not showing in view page source Angular 2+
Dynamic meta title not showing in view page source Angular Universal
We have used the title service and meta service for each component. The tile aswellas the metadata is updated only on the element ...
2
votes
0
answers
119
views
How to open the ViewSource of an URL directly in Java?
I programmed a simple button that allows the user to open a desired website.
Desktop.getDesktop().browse(new URL(_urlString).toURI());
I want another button that allows the user to open the websites ...
1
vote
1
answer
460
views
Get web elements as they shown through view source
Using this code below I get the href from a link element.
Sting url
List<WebElement> wElements = DriverFactory.getWebDriver().findElements(By.className("link-class"))
if(...
0
votes
1
answer
745
views
Browser's view-source: Can files be "downloaded" this way?
As you probably know, one can view the original response HTML code for any website URL by prefixing it with view-source: in the browser (e.g. view-source:https://www.google.de/).
Now interestingly, ...
0
votes
1
answer
187
views
How to fix view-source font problem in firefox
when i go to the any page view-source in Mozilla Firefox browser i have problem that you can see in screenshot...
codes font in view-source of Mozilla Firefox browser are like that
and that's where ...
-1
votes
1
answer
404
views
How to hide the source view of a page with htaccess?
As I said in the title, how to hide the source view of a page with htaccess ? Like that:
(fake code) IF [URL START WITH "view-soure"] - DONT_SHOW_CODE_PLZ
0
votes
0
answers
77
views
Chrome not showing correct source
I have a PHP application. It has a login page. From within Chrome, if I do a CTRL-U (view source) within anywhere beyond the login page, I get the login's page HTML.
To the best of my knowledge, I ...
13
votes
1
answer
5k
views
Chrome cannot auto wrap lines in view-source:// after update to v87.0.4280.67 [closed]
Before I updating chrome, when I go to view-source:// of Chrome, It'll auto wrap line(so there'is no horizontal scrollbar).But after I updating Chrome to v87.0.4280.67,It shows horizontal scrollbar ...
1
vote
0
answers
18
views
View Source & Google Chrome Extension Interaction [duplicate]
I currently have a Google Chrome extension that can read the dom of the page I am viewing, by accessing:
document.documentElement.outerHTML
I can then also get it to print elements of the dom to the ...
-1
votes
1
answer
2k
views
Favicon doesn't show up in viewsource, or on images. (localhost chrome)
I'm currently creating a website, and I'm almost finished, but there's one problem. The favicon does not show up on view source, or on an image (in localhost, chrome). You see, I'm not sure if I'm ...
0
votes
1
answer
1k
views
Dynamically added noscript tag doesn't show in view source page Angular Universal
I append noscript tag as body's child, when I run app with angular universal it doesn't show tag in body, but I can see it on inspect element
I need to add this noscript tag not in app-root, I need ...