<?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 Detect if IE plugin is installed or not in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850022#M298178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running on a challenge to detect if IE plugin is installed on client machine or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case, access to QlikView dashboard is given as link within the SharePoint site.&lt;/P&gt;&lt;P&gt;I know a java script code snippet which detects if IE plugin is installed or not, I've used that when QlikView dashboard is accessible from link within the ASP.NET web application. Below is the java script code which detects the IE plugin:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14280398030808905" jivemacro_uid="_14280398030808905"&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;script&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: red;"&gt;type&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;="text/javascript"&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; $(&lt;SPAN style="color: blue;"&gt;function&lt;/SPAN&gt; () {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; check = DetectPlugin();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;if&lt;/SPAN&gt; (check) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; $(&lt;SPAN style="color: maroon;"&gt;"#frmReport"&lt;/SPAN&gt;).attr(&lt;SPAN style="color: maroon;"&gt;"src"&lt;/SPAN&gt;, &lt;SPAN style="color: maroon;"&gt;"&lt;SPAN style="background: yellow;"&gt;&amp;lt;%&lt;/SPAN&gt;=this.pluginLinkPath&lt;SPAN style="background: yellow;"&gt;%&amp;gt;&lt;/SPAN&gt;"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;else&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; $(&lt;SPAN style="color: maroon;"&gt;"#frmReport"&lt;/SPAN&gt;).attr(&lt;SPAN style="color: maroon;"&gt;"src"&lt;/SPAN&gt;, &lt;SPAN style="color: maroon;"&gt;"&lt;SPAN style="background: yellow;"&gt;&amp;lt;%&lt;/SPAN&gt;=this.ajaxLinkPath&lt;SPAN style="background: yellow;"&gt;%&amp;gt;&lt;/SPAN&gt;"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; });&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;function&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; DetectPlugin() {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; name = &lt;SPAN style="color: maroon;"&gt;"QlikTech.QlikOcxCtrl"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; active_x_obj = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; ActiveXObject(name);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; active_x_obj.GetVariable(&lt;SPAN style="color: maroon;"&gt;'$version'&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; active_x_obj.GetVersions();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; version;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;for&lt;/SPAN&gt; (&lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; i = 1; i &amp;lt; 9; i++) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;if&lt;/SPAN&gt; (active_x_obj.isVersionSupported(i + &lt;SPAN style="color: maroon;"&gt;'.0'&lt;/SPAN&gt;)) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; version = i;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; version || &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;false&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;script&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sue how I can use this or develop similar function within SharePoint site. Any help on this would really appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Apr 2015 05:45:54 GMT</pubDate>
    <dc:creator>AbhijitBansode</dc:creator>
    <dc:date>2015-04-03T05:45:54Z</dc:date>
    <item>
      <title>Detect if IE plugin is installed or not</title>
      <link>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850022#M298178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running on a challenge to detect if IE plugin is installed on client machine or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case, access to QlikView dashboard is given as link within the SharePoint site.&lt;/P&gt;&lt;P&gt;I know a java script code snippet which detects if IE plugin is installed or not, I've used that when QlikView dashboard is accessible from link within the ASP.NET web application. Below is the java script code which detects the IE plugin:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14280398030808905" jivemacro_uid="_14280398030808905"&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;script&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: red;"&gt;type&lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;="text/javascript"&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; $(&lt;SPAN style="color: blue;"&gt;function&lt;/SPAN&gt; () {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; check = DetectPlugin();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;if&lt;/SPAN&gt; (check) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; $(&lt;SPAN style="color: maroon;"&gt;"#frmReport"&lt;/SPAN&gt;).attr(&lt;SPAN style="color: maroon;"&gt;"src"&lt;/SPAN&gt;, &lt;SPAN style="color: maroon;"&gt;"&lt;SPAN style="background: yellow;"&gt;&amp;lt;%&lt;/SPAN&gt;=this.pluginLinkPath&lt;SPAN style="background: yellow;"&gt;%&amp;gt;&lt;/SPAN&gt;"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;else&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; $(&lt;SPAN style="color: maroon;"&gt;"#frmReport"&lt;/SPAN&gt;).attr(&lt;SPAN style="color: maroon;"&gt;"src"&lt;/SPAN&gt;, &lt;SPAN style="color: maroon;"&gt;"&lt;SPAN style="background: yellow;"&gt;&amp;lt;%&lt;/SPAN&gt;=this.ajaxLinkPath&lt;SPAN style="background: yellow;"&gt;%&amp;gt;&lt;/SPAN&gt;"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; });&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;function&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; DetectPlugin() {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; name = &lt;SPAN style="color: maroon;"&gt;"QlikTech.QlikOcxCtrl"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; active_x_obj = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; ActiveXObject(name);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; active_x_obj.GetVariable(&lt;SPAN style="color: maroon;"&gt;'$version'&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; active_x_obj.GetVersions();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; version;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;for&lt;/SPAN&gt; (&lt;SPAN style="color: blue;"&gt;var&lt;/SPAN&gt; i = 1; i &amp;lt; 9; i++) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;if&lt;/SPAN&gt; (active_x_obj.isVersionSupported(i + &lt;SPAN style="color: maroon;"&gt;'.0'&lt;/SPAN&gt;)) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; version = i;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; version || &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; } &lt;SPAN style="color: blue;"&gt;catch&lt;/SPAN&gt; (e) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt;&amp;nbsp; &lt;SPAN style="color: blue;"&gt;return&lt;/SPAN&gt; &lt;SPAN style="color: blue;"&gt;false&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas;"&gt; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;script&lt;/SPAN&gt;&lt;SPAN lang="EN-GB" style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sue how I can use this or develop similar function within SharePoint site. Any help on this would really appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 05:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850022#M298178</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2015-04-03T05:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Detect if IE plugin is installed or not</title>
      <link>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850023#M298179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any expert guide me on this?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/4003"&gt;hic&lt;/A&gt;‌&amp;nbsp; &lt;A href="https://community.qlik.com/qlik-users/96544"&gt;gwassenaar&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/15823"&gt;swuehl&lt;/A&gt;‌ @&lt;A href="https://community.qlik.com/people/mby"&gt;mby&lt;/A&gt; @&lt;A href="https://community.qlik.com/people/maxgro"&gt;maxgro&lt;/A&gt;&lt;SPAN style="color: #a9a9a9; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.6999998092651px;"&gt;&amp;nbsp;&amp;nbsp; @&lt;A href="https://community.qlik.com/people/jagan"&gt;jagan&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="icon-status-icon icon-partner" style="margin: 0 0 0 4px; font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #a9a9a9;" title="Partner"&gt;&lt;/SPAN&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 05:43:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850023#M298179</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2015-04-06T05:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Detect if IE plugin is installed or not</title>
      <link>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850024#M298180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;blog.kalmstrom.com/2011/12/new-kalmstromcom-tip-how-to-add.html&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can put this js in a webpart also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 06:03:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850024#M298180</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-04-06T06:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Detect if IE plugin is installed or not</title>
      <link>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850025#M298181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan, thanks for your time.Yes, i can embed this code into a web part.But don't know how I can trigger this web part on click of link within the page. I cannot access this video from office machine. I will definitely go through it and update the thread as per my findings.Again,thank you very much for help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 11:35:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Detect-if-IE-plugin-is-installed-or-not/m-p/850025#M298181</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2015-04-06T11:35:46Z</dc:date>
    </item>
  </channel>
</rss>

