Tagged Questions
3
votes
5answers
217 views
Is it ok for an HTML element to have the same [name] as its [id]?
I'm working on embedding a flash app in a webpage using the Satay method:
<object type="application/x-shockwave-flash" data="embeddy.swf"
id="embeddy" name="embeddy">
<param name="movie" ...
2
votes
5answers
202 views
Music Player That Lives Through Pages
I have a master page and inside : a music player.
<object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf"
width="200" ...
1
vote
2answers
175 views
Do SVG-enabled browsers ignore alternative images (when included in object tags)?
An illustration that I want to include in a site is 28.1 times smaller in SVG format than the same illustration saved as a PNG.
Unfortunately, I have to cater for browsers that aren't SVG-enabled. So ...
1
vote
1answer
642 views
Why does youtube etc use <object> and not <iframe>?
Why does youtube etc use <object> and not <iframe>?
What are the advantages of object over iframe for this case?
1
vote
2answers
334 views
How to display video on html page in firefox
I did looked at this question, but the asker didn't got any reply. Still, I'm giving it a try.
I want to embed a video file on a html page. The code works fine on IE but doesn't work on firefox.
The ...
1
vote
5answers
534 views
tabbed html application
I am writing a complex tab based web application where each tab is unrelated to each other in the sense that there is no interaction. So for ease of development i want I want each tab to be a separate ...
1
vote
3answers
2k views
Firefox 3.0.7 is crashing when embedding a PDF using the object tag
I'm attempting to embed a PDF file into a HTML page using the object tag. The following HTML crashes Firefox 3.0.7:
<object id="pdfObject40" type="application/pdf" data="/file.ashx?id=40" ...
0
votes
1answer
91 views
How could I stream a video in my website?
I tried to stream a video from my browser using the object tag in html. But when I build the project, the video is not being played. Here is the piece of code,
<object id="Player" ...
0
votes
2answers
129 views
Should data attribute of object tag be percent-encoded?
Suppose my web application renders the following tag:
<object type="application/x-pdf" data="http://example.com/test%2Ctest.pdf">
<param name="showTableOfContents" value="true" />
...
0
votes
1answer
605 views
What does the JS function 'postMessage()' do when called on an html object tag?
I was recently searching for a way to call the print function on a PDF I was displaying in adobe air. I solved this problem with a little help from this fellow, and by calling postMessage on my PDF ...
0
votes
3answers
938 views
PHP Input validation for a single input for a url
I have this very simple script that allows the user to specify the url of any site. The the script replaces the url of the "data" attribute on an object tag to display the site of the users choice ...