Modern Browsers IE , Firefox and Chrome iframe support - html

As I was upgrading a site to use bootstrap css I noticed a page that has an iframe that it uses. Another developer claims it works only in IE, but I cannot get it to work in IE, FF or Chrome. FF and Chrome display nothing, while IE 11 blows up trying to load the pdf.
The code that is literally in the view source of what the browsers are trying to read just doesn't look quite right to me. Thoughts?
<iframe id="ContentPlaceHolder1_pdfFrame" width="720" height="590" name="pdfFrame" src="File:\\chc\shared\IntakeTest\Storage\WF_Test_20130702161454_2.pdf"></iframe>

Related

How can I target Iframe on Firefox using HTML?

I'm a student developing a web site.
I placed some iframes in a WordPress page, and discovered that every link opens in new tab in Firefox.
The HTML code:
example
<iframe id="example" name="example" src="http://example"></iframe>
I've looked up other similar questions and tried a few solutions (defining id and iframe name, not using capital letters in iframe name. I've also tried adding an at symbol # in the iframe name), but none of these work in Firefox. I've also checked PC Chrome, mobile Chrome, PC Edge, and iPhone Safari, no problems on these browsers.
I wonder, has anyone else experienced the same problem on Firefox especially, and whether someone can explain the reason?
I have a few theories.
Firefox doesn't fully support it
You forgot .com in your example domain.
Also, your code works for me in Chrome. Maybe it's a Firefox issue.

Secure page not displaying inside iframe in internet explorer

Our secure finance form is embedded in a third parties website using an iframe. The form displays correctly in Chrome and Firefox but does not in Internet Explorer. I have tested on IE 11, IE 10, and IE 9. In Internet explorer, instead of the form, inside the iframe the homepage loads.
Is this an Internet Explorer issue or is there anything we can do?
Make sure you include http:// in the src field as this is a common mistake that causes that issue.
Like this:
<iframe width="300" height="3000" src="http://www.youtube.com/embed/something..." frameborder="0"</iframe>
Make sure you have ActiveX and Scripting turned on on your IE settings.
In IE, the parent page and the iFrame need to use the same protocol. So for this to work you need to ensure both use HTTPS.

Sometimes HTML video doesn't autoplay after loading

Sometimes the HTML video on the topmost portion of my site doesn't run even though after it has been completely downloaded. I am using Safari 5.0.6 on iMac. On other browsers as well, sometimes it works fine and at times, it only starts working when I refresh the page.
Can you guess what may be causing this ?, or how I could try fixing this ?
Got the same issue in chrome, autoplay can be emulated by the next way (using jQuery's selector):
<video ..... oncanplay="$(this)[0].play()" >...</video>
Well, I opened your site on my browsers. It's working just fine on Chrome 15 and Firefox 7 [Windows7]. May be you should try it on newer browsers.

My HTML5 webpage is not being read correctly in IE 9

Hello my website http://www.paruhdice.com/index2.html is not acting as it should be. It worked some what fine in IE 8. And works perfectly in the latest CHROME and Firefox... but my sliding navigation is not even responding. What should I do? Prompt users to use CHROME or FIREFOX... or is there a fix to this? Thanks ahead of time
It seems to be working for me in IE 9.0.8112.16421 as well as the latest Firefox release. The left-hand navigation bar moves smoothly with the window as I re-size.
Unfortunately, HTML5 is not a fully implemented standard, so you won't get full support in any browser. IE9 was also released back in march and both Chrome and Firefox have made great strides since then to add more support for HTML5. Doing a quick web search I came up with the site, http://html5test.com/results.html. It certainly gives an interesting overview of your current browsers support for html5 as well as the ranking of other browsers by comparison.
Since it all ready sounds like you are telling all of the old IE, Safari, Firefox users to update to view your site, I see no reason to tell them some features don't work and you recommend they upgrade.

Safari HTML5 offline problem

I am trying to run a script that supports for HTML5 offline working. It works fine in Firefox but not in safari. I want it to work in safari too. You can see here.
http://vps.sunztech.com/clock.html
HOW TO CHECK OFFLINE WORKING: open the URL when internet is connected.close the browser after loading all contents. now disable internet and load that URL again it should show the the data from cache.
The above is working fine in Firefox but not in Safari.
May anyone can give me the solution...
I will be thankful
Make sure that the manifest file is served as type text/cache-manifest. There are several other guidelines worth checking in Apple's developer documentation for iPhone and Mobile Safari.