I thought I remembered reading somewhere that IE9 would not be supporting them, but now after searching I can't find any indication that this is true.
Is anyone aware of a definitive statement, either way, about whether Microsoft will be supporting conditional comments in IE9?
...
I have made most my site SE friendly, but one part of my site bugs me...
I have a HUGE form in one of the pages, and when submitting the form (action=php_page) URL is so long it covers half a word document in one line with all the passing variables...
This is very ugly...
Is there any way to make this long URL appear short?
Or some o...
Hello,
I'm working with an HTML table, that contains numbers (formated) and when I export this to xls file (just change extension... hehe) I loss some of the formated data.
Example:
in html I have " 1,000.00 | 500.00 | 20.00 "
and in excel it shows like:
"1,000.00 | 500 | 20"
I want it to know if it is possible to show the very same...
Struts seems to completely ignore the styleclass option for rendering the and associated options.
I have spent a good deal of time getting the CSS right for this website to shar on all the pages, but cannot get struts to play ball?
...
After loading image i get strange white line. After image is loading white line dissapear. I am loading image with html:
<img src="/images/p1.png" alt="" width="666" height="196" />
...
I can embed a mime encoded JPEG in an html page by saving the page from IE using the File-SaveAs menu and selecting (Web Archive, single file (*.mht)).
Renaming this .mht file with .eml enables Outlook to open it and send an HTML email.
My questions are:
How can I embed JPEG images directly in HTML pages (no external files). Are the...
I would like to POST a form in an iframe, generated like so:
My JS loads an iframe inside the page, adds a form to the iframe and submits the form. What I would like to happen is the iframe to load the result of that request. So, I would effectively like to post a form and render the result inside the iframe, without touching the parent...
Hi
I have a web page that has a requirement to allow users to paste large amounts of text data from an Excel spreadsheet directly into the input controls of the page.
Typically the user would be pasting anywhere between 150 to 300 spreadsheet cells that are all in one column.
What are some good ways i could use to capture this data o...
I have a Flex/Actionscript 3 application that displays RSS feeds in a Text element. It strips out any HTML formatting present, but it's not handling HTML special entity codes properly -- it's rendering &mdash as the literal string instead of replacing it with an em-dash, etc. Is there any systematic way I can make it handle those codes...
I am a little bit confused. Here is a small web page.
There are two main div-s: top and mainBlock.
First contains an image. The problem is that firebug shows that div#top's height is equal to 0 and because of that the next div mainBlock moves up. If I would delete this piece of code:
div#logo{
float: left;
}
everything will start...
I have some HTML and I need to extract the actual written text from the page.
So far I have tried using a web browser and rendering the page, then going to the document property and grabbing the text. This works, but only where the browser is supported (IE com object). The problem is I want this to be able to run under wine also, so...
I have a table with id "tbl" and it has 2 rows and 3 cols. Each cell(td) has an explicitly defined id. Also, the table has an onclick event that calls a function foo(). The onclick() would be generated whenever any cell is clicked.
The table tag is
< table id="tbl" width="80%" height="20%" onclick="javascript: foo()" >
I also tri...
Hello,
I am trying to learn how to write cookies to keep the data in my CookieButton1 button persistent and to survive refreshes and page reloads. How can I do this in JavaScript?
I have supplied my source code. Any advise, links or tutorials will be very helpful.
If you navigate to [http://iqlusion.net/test.html][1] and click on Empty1,...
Hello, I am trying to change the selected option in a select dropdown box with jQuery. I have it set so that it finds the hash tag at the end of the URL and based on that hash tag it changes the selected option in the select box.
Most of my code is functional, it successfully finds the hash tag and executes the if statement that corresp...
So, I have a table like below. Imagine there are multiple columns, I thought by formatting the <col/> tag I would be able to change the formatting of every <td> in that column. I want to give data in the first column a text-align:center, but it doesn't seem to work. Is there a way to get this to work other than adding a class to every <t...
Hello there,
Do you guys know if there is an application that enables me to use GET, PUT, DELETE HTTP methods in a simple way?
I want to run it against Google's BigTable.
Thanks a lot.
...
IE displays a default scrollbar on the page, which appears even if the content is too short to require a scrollbar.
The typical way to remove this scrollbar (if not needed), is to add this to your CSS:
html {
height: 100%;
overflow: auto;
}
I'm trying to do the same thing in Javascript (without requiring that in my CSS), but I ca...
I have a HTML table where some rows have a button like this:
<td >
<form action="..." method="GET">
<input type="submit" value="..."/>
</form>
</td>
The rows with the input have about twice the height of other rows that have otherwise similar data. When I remove the just the input, the row height goes back to normal....
I'm making html widget for websites. Let's say, it will display current stock indexes.
In short, arbitrary website owner takes code snippet from me and includes it on his webpage http://website.com/index.html. When arbitrary user opens http://website.com/index.html, my code sends request to my server (provider.com), which performs necess...
I'm having trouble styling a select list in an html form. Basically I want it to have a font size of 12px, and a height of 30px; The problem is that the box is drawn to the right hight, but the text rendering varies in each browser. In FireFox it renders it in the top left corner. I want to vertically center the text. Anyone know of a wa...