<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic progency -real estate in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/progency-real-estate/m-p/1862012#M71125</link>
    <description>&lt;DIV id="bodyDisplay" class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;
&lt;DIV class="lia-message-body-content"&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
	&amp;lt;title&amp;gt;Local Weather&amp;lt;/title&amp;gt;
	&amp;lt;script&amp;gt;
	window.addEventListener("load", () =&amp;gt; {
		//Asks user location
		let long;
		let lat;
		
		if(navigator.geolocation) {
			navigator.geolocation.getCurrentPosition(position =&amp;gt; {
				long = position.coords.longitude;
				lat = position.coords.latidute;
				
				const proxy = "https://cors-anywhere.herokuapp.com/";
				const api =`${proxy}https://api.darksky.net/forecast/217e0a6f0942213d0c3e6990a8b626f3/${lat},${long}`;
				//Catches weather info from website
			fetch(api)
			.then(response =&amp;gt; {
				return response.json();
			})
			.then(data =&amp;gt; {
				console.log(data);
			});
			
		});
		}
	});

	&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
@media screen and (min-width:1px) and (max-width:1365px) {
    ...
}
@media screen and (min-width:1366px) {
    ...
}
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body{
	height:100vh;
	display:flex;
	justify-content:center;
	flex-direction:column;
	align-items:center;
	background:linear-gradient(rgb(47,150,163), rgb(48,62,143));
	font-family:sans-serif;
	color:white;
	
}
.location, .temperature{
	height:30vh;
	width:50%;
	display:flex;
	justify-content:space-around;
	align-items:center;
	
}
.temperature{
flex-direction:column;
}
.degree-section{
	display:flex;
	align-center:center;
	cursor:pointer;
}
.degree-section span{
	margin:10px;
	font-size:30px;
	
}
.degree-section h2{
	font-size:35px;
	position:relative;
	top:5px;
}
&amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div class="location"&amp;gt;
&amp;lt;h1 class="location-timezone"&amp;gt;Timezone&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;Icon&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="temperature"&amp;gt;
&amp;lt;div class="degree-section"&amp;gt;
&amp;lt;h2 class="temperature-degree"&amp;gt;34&amp;lt;/h2&amp;gt;
&amp;lt;span&amp;gt;F&amp;lt;/span&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="temperature-description"&amp;gt;It's cold
&amp;lt;/div&amp;gt;


&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;


I am facing issue while loading resource file of my Progency javascript. Kindly help me out by checking my code. Thanks!&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="AddMessageTags lia-message-tags lia-component-message-view-widget-tags"&gt;&lt;A id="showAddTag" class="lia-link-navigation add-tag-link" role="button" href="https://community.qlik.com/t5/New-to-Qlik-Sense/How-To-fix-failed-to-load-resource-in-JavaScript/m-p/1855841#" aria-label="Add Tag..." target="_blank"&gt;Add tags&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://progency.pk" target="_blank"&gt;Progency&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;is a real estate firm that provides expert guidance at finding a home or investment property in Rawalpindi and islamabad - Pakistan. It guides you thrugh the process to help you achieve your dreams!&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Nov 2021 10:28:07 GMT</pubDate>
    <dc:creator>Progency</dc:creator>
    <dc:date>2021-11-22T10:28:07Z</dc:date>
    <item>
      <title>progency -real estate</title>
      <link>https://community.qlik.com/t5/App-Development/progency-real-estate/m-p/1862012#M71125</link>
      <description>&lt;DIV id="bodyDisplay" class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;
&lt;DIV class="lia-message-body-content"&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
	&amp;lt;title&amp;gt;Local Weather&amp;lt;/title&amp;gt;
	&amp;lt;script&amp;gt;
	window.addEventListener("load", () =&amp;gt; {
		//Asks user location
		let long;
		let lat;
		
		if(navigator.geolocation) {
			navigator.geolocation.getCurrentPosition(position =&amp;gt; {
				long = position.coords.longitude;
				lat = position.coords.latidute;
				
				const proxy = "https://cors-anywhere.herokuapp.com/";
				const api =`${proxy}https://api.darksky.net/forecast/217e0a6f0942213d0c3e6990a8b626f3/${lat},${long}`;
				//Catches weather info from website
			fetch(api)
			.then(response =&amp;gt; {
				return response.json();
			})
			.then(data =&amp;gt; {
				console.log(data);
			});
			
		});
		}
	});

	&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
@media screen and (min-width:1px) and (max-width:1365px) {
    ...
}
@media screen and (min-width:1366px) {
    ...
}
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body{
	height:100vh;
	display:flex;
	justify-content:center;
	flex-direction:column;
	align-items:center;
	background:linear-gradient(rgb(47,150,163), rgb(48,62,143));
	font-family:sans-serif;
	color:white;
	
}
.location, .temperature{
	height:30vh;
	width:50%;
	display:flex;
	justify-content:space-around;
	align-items:center;
	
}
.temperature{
flex-direction:column;
}
.degree-section{
	display:flex;
	align-center:center;
	cursor:pointer;
}
.degree-section span{
	margin:10px;
	font-size:30px;
	
}
.degree-section h2{
	font-size:35px;
	position:relative;
	top:5px;
}
&amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div class="location"&amp;gt;
&amp;lt;h1 class="location-timezone"&amp;gt;Timezone&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;Icon&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="temperature"&amp;gt;
&amp;lt;div class="degree-section"&amp;gt;
&amp;lt;h2 class="temperature-degree"&amp;gt;34&amp;lt;/h2&amp;gt;
&amp;lt;span&amp;gt;F&amp;lt;/span&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class="temperature-description"&amp;gt;It's cold
&amp;lt;/div&amp;gt;


&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;


I am facing issue while loading resource file of my Progency javascript. Kindly help me out by checking my code. Thanks!&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="AddMessageTags lia-message-tags lia-component-message-view-widget-tags"&gt;&lt;A id="showAddTag" class="lia-link-navigation add-tag-link" role="button" href="https://community.qlik.com/t5/New-to-Qlik-Sense/How-To-fix-failed-to-load-resource-in-JavaScript/m-p/1855841#" aria-label="Add Tag..." target="_blank"&gt;Add tags&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://progency.pk" target="_blank"&gt;Progency&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;is a real estate firm that provides expert guidance at finding a home or investment property in Rawalpindi and islamabad - Pakistan. It guides you thrugh the process to help you achieve your dreams!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 10:28:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/progency-real-estate/m-p/1862012#M71125</guid>
      <dc:creator>Progency</dc:creator>
      <dc:date>2021-11-22T10:28:07Z</dc:date>
    </item>
  </channel>
</rss>

