html

Copy&paste from Office 2007 into <textarea>

I want to copy and paste text from a Office 2007 document (docx) into a textarea. On Window, using Firefox 3, there is additional jiberish that gets put into the field: ...Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Normal 0 false ...

How to disable Javascript in mshtml.HTMLDocument (.NET)

I've got a code like this : Dim Document As New mshtml.HTMLDocument Dim iDoc As mshtml.IHTMLDocument2 = CType(Document, mshtml.IHTMLDocument2) iDoc.write(html) iDoc.close() However when I load an HTML like this it executes all Javascripts in it as well as doing request to some resources from "html" code. I want to disable javascript...

Why doesn't a <table>'s margin collapse with an adjacent <p>?

From my understanding of the CSS spec, a table above or below a paragraph should collapse vertical margins with it. However, that's not happening here: <table style="margin: 100px; border: solid red 2px"> <tr><td> This is a one-celled table with 100px margin all around. </td></tr> </table> <p style="margin:100px">This is a paragrap...

How do I simultaneously (1) keep a <div> from taking up all available width and (2) make it collapse margins with its neighbors?

Is it possible to have a <div> simultaneously (1) not take up all available width and (2) collapse margins with its neighbors? I learned recently that setting a div to display:table will stop it from expanding to take up the whole width of the parent container -- but now I realize that this introduces a new problem: it stops collapsing ...

Can emacs re-indent a big blob of HTML for me?

When editing HTML in emacs, is there a way to automatically pretty-format a blob of markup, changing something like this: <table> <tr> <td>blah</td></tr></table> ...into this: <table> <tr> <td> blah </td> </tr> </table> ...

Best way to embed a SWF file in a html page?

What is the best way to embed a SWF file in an HTML page? ...

CSS for hover that includes all child elements

I have a draggable div element with a hover style. This works fine, but the div contains some form elements (label, input). The problem is that when the mouse is over these child elements the hover is disabled. <div class="app_setting"> <label">Name</label> <input type="text" name="name"/> </div> .app_setting:hover { cursor:move;...

What is the best way to parse a web page in Ruby?

I have been looking at XML and HTML libraries on rubyforge for a simple way to pull data out of a web page. For example if I want to parse a user page on stackoverflow how can I get the data into a usable format? Say I want to parse my own user page for my current reputation score and badge listing. I tried to convert the source retri...

How do I upload a HTML form with a username, password, multiple file uploads and then process it with PHP?

How to post a username, password and multiple binary files from a single html form and process it using php? I'm not allowed to use ajax. ...

Is it possible to manipulate an SVG document embedded in an HTML doc with JavaScript?

I have made a SVG image, or more like mini application, for viewing graphs of data. I want to include this in a HTML page, and call methods on the SVG image. Example: <object id="img" data="image.svg" width="500" height="300"/> <script>document.getElementById("img").addData([1,23,4]);</script> Is it at all possible to call methods on...

How to extract img src, title and alt from html using php?

I would like to create a page where all images which reside on my website are listed with title and alternative representation. I already wrote me a little program to find and load all html files, but now I am stuck at how to extract src, title and alt from the html < img src="/image/fluffybunny.jpg" title="Harvey the bunny" alt="a ...

Landscape printing from HTML

I have a HTML report, which needs to be printed landscape because of the many columns. It there a way to do this, without the user having to change the document settings? And what are the options amongst browsers. ...

How to convert HTML to XHTML?

I need to convert HTML documents into valid XML, preferably XHTML. What's the best way to do this? Does anybody know a toolkit/library/sample/...whatever that helps me to get that task done? To be a bit more clear here, my application has to do the conversion automatically at runtime. I don't look for a tool that helps me to move some p...

How do you parse a HTML string for image tags to get at the SRC information?

Possibly a lame question. But I've yet to find an answer to it. Currently I use .Net WebBrowser.Document.Images() to do this. It requires the Webrowser to load the document. Its messy and takes up resources. According to this Question Xpath is better than a regex at this. Anyone know how to do this in C#? Thanks ...

When should I use Inline vs. External Javascript?

I would like to know when I should include external scripts or write them inline with the html code, in terms of performance and ease of maintenance. What is the general practice for this? Real-world-scenario - I have several html pages that need client-side form validation. For this I use a jQuery plugin that I include on all these pa...

.htm or .html extension - which one is correct and what is different?

When I save a file with an .htm or .html extension, which one is correct and what is different? ...

DIV with overflow:auto and a 100% wide table problem

I hope someone might be able to help me here. I've tried to simplify my example as best I can. I have an absolutely positioned DIV, which for this example I've made fill the browser window. This div has the overflow:auto attribute to provide scroll bars when the content is too big for the DIV to display. Within the DIV I have a table t...

What is the best way to prevent highlighting of text when clicking on its containing div in javascript?

I am building a menu in HTML/CSS/JS and I need a way to prevent the text in the menu from being highlighted when double-clicked on. I need a way to pass the id's of several divs into a function and have highlighting turned off within them. So when the user accidentally (or on purpose) double clicks on the menu, the menu shows its sub-e...

Delayed jump

How do I cause the page to make the user jump to a new web page after X seconds. If possible I'd like to use HTML but a niggly feeling tells me it'll have to be Javascript. So far I have the following but it has no time delay <body onload="document.location='newPage.html'"> ...

Testing for multiple screens with javascript

Is it possible to tell if the user of a website is using multiple monitors? I need to find the position of a popup but it's quite likely the user will have a multiple monitor setup. Whilst window.screenX etc. will give the position of the browser window it's useless for multiple monitors. ...