Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The <a href="http://msdn.microsoft.com/en-us/library/ms536651%28v=vs.85%29.aspx" rel="nofollow"><code>window.open()</code></a> method expects all of those height, width, etc., parameters as a single string:</p> <pre><code>window.open('stream/index.html', 'LiveStream', 'height=70,width=500,toolbar=no,menubar=no,scroolbars=no,resizable=no,location=no,directories=no,status=no'); </code></pre> <p>According to <a href="https://developer.mozilla.org/en/DOM/window.open" rel="nofollow">MDN</a> the window name and the string with the features should not contain blank space. I don't know why your existing code works in FF.</p> <p>Most or all of your <code>&lt;a&gt;</code> variations should work, but of the ones you tried I'd suggest this one:</p> <pre><code>&lt;a href="javascript:void(0)" onclick="streamwindow()"&gt;Listen Live&lt;/a&gt; </code></pre> <p>Better, though, would be to set the <code>href</code> to the same URL as what the JS will open, so that the link will still work for users with JS disabled. For users with JS enabled you then return false from the <code>onclick</code> so that the default navigation doesn't occur as well as your onclick:</p> <pre><code>&lt;a href="stream/index.html" onclick="streamwindow(); return false;"&gt;Listen Live&lt;/a&gt; </code></pre> <p>If the above still doesn't work I'd suggest you temporarily replace the contents of your functions with a simple <code>alert("In function x");</code> message to test if the functions are being called at all.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload