Tagged Questions

0
votes
3answers
693 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" …
1
vote
1answer
60 views

.Net Client DLL Delivery Question

I have a .Net DLL that I created that implements a WCF client that talks to a WCF service, allowing the end-user to pipe data to the server where the service resides. I use this DLL in client …
0
votes
1answer
16 views

What is an onXload event?

I've come across object tags in sites that read: <object id='launcher' type='application/x-someapp' onXload='doSomething();'></object> onXLoad doesn't seem to be an event handler that …
0
votes
1answer
358 views

Embedding Foxit PDF Reader into a webpage

I need to embed Foxit Reader (PDF reading software) into a web page. Does anybody know the correct classid and parameters to use in the following code: <object id="pdfReaderObj" …
0
votes
3answers
304 views

Does Internet Explorer remove the <object> element from DOM?

I have markup in my page that includes the tag: <body> <object codebase="blah" codetype="text/blah"> <param name="name" value="value"/> <div>Some Markup</div> …
1
vote
5answers
250 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 …
0
votes
3answers
346 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 …
0
votes
4answers
3k views

How can I dynamically add an <object> tag with JavaScript in IE?

I have to add either an embed tag for Firefox or an object tag for Internet Explorer with JavaScript to address the appropriate ActiveX / Plugin depending on the browser. The plugin could be missing …