Html is empty
See original GitHub issueI made a main.html file and app.py file. Chrome is opening but that window is empty. My main.html is that:
<html><head>
<title>My title</title>
<script type="text/javascript" src="/eel.js"></script>
</head>
<body>
<h1>Hello!</h1>
</body>
</html>
But when I run the app.py, the html of opened window is always that:
<html><head>
<title>App</title>
<script type="text/javascript" src="/eel.js"></script>
</head>
<body>
</body>
</html>
Thanks for helps.
Issue Analytics
- State:
- Created 4 years ago
- Comments:7
Top Results From Across the Web
How do I check if an HTML element is empty using jQuery?
18 Answers 18 · 1- Using html : if (!$.trim($('p#element').html())) { // paragraph with id="element" is empty, your code goes here } ·...
Read more >How to check an HTML element is empty using jQuery
Method 1: Using the “:empty” selector: The element to be checked using is() method. The is() method is used to check if one...
Read more >How do I check if an HTML element is ... - Net-Informations.Com
jQuery :empty Selector - You can use jQuery is() and :empty Selector together to check whether elements is empty or not before performing...
Read more >HTML Elements - W3Schools
Note: Some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an...
Read more >empty - CSS: Cascading Style Sheets - MDN Web Docs
The :empty CSS pseudo-class represents any element that has no children. Children can be either element nodes or text (including whitespace) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m going to include the “default to caching off” in a v0.11.0 release. While this is technically a breaking change, given that we’re below v1.0.0 and we think it’s generally useful for most users, I think it’s acceptable.
I’ll close this issue off when I’ve released v0.11.0
@ChrisKnott we’ve only released pre-release v1.0.0-a1 actually - so people installing via
pip install eel
probably won’t be getting it. Might be time to bump it up to a fullv1.0.0
so that everyone gets it by default.