..some code here ...
<iframe id="iView" frameborder="0" style="position: relative; z-index: 1500; left: 387px; top: 90px; width: 185px; height: 180px;" name="iView" src="">
<html>
<head>
</head>
<body style="background-color: rgb(0, 204, 204);"> CONTENT </body>
</html>
</iframe>
..some code here ...
i can get the CONTENT with this:
...
My web application is Asp.NET 2.0 and in one page, i'm using HttpWebRequest to load some content into a container page. This works well within Firefox, IE7/8, Safari but it crashes IE6. It hangs or shuts down.
The content page i'm trying to read is called tmp.html and if i call it directly (using IE6) then it seems ok. The html code ins...
I build a website focussing on loading only data that has to be loaded.
I've build an example here and would like to know if this is a good way to build a wegpage.
There are some problems when building a site like that, e.g.
bookmarking
going back and forth in
history SEO (since the content is basically not really connected)
so here...
Works in IE8 & Mozilla
select:focus, input:focus,textarea:focus
{
background:#abd533;
font-family:verdana;
}
While using IE7, I observed that input field background color not shown, but it appears in IE8 & Mozilla.
Can anyone please let me know what to do with IE7 or IE6 ?
...
Hi,
This is driving me crazy. I'm trying to get the footer div to be at the bottom of the page even if the main content doesn't fill the height of the browser. The below code works except for when I shrink the browser up and then the footer div overlaps the wrapper div, then the scroll bar appears. I want it to bump up against the wrapp...
What I mean is, lets say I have a content:
"Stackoverflow is the best, bla bla bla..."
I want to print the content in a paper, not computer monitor, how to do that?
I saw a lot of CMS using php, have a print icon, and able to print it? (Well, I am not creating a CMS, just wondering how the printing works in php)
...
Hello once again elite coders of stackOverflow. I have another curiously simple yet seemingly hard to answer question. I'm just full of these it seems.
If I have a table like this very very simple example:
table {
table-layout:fixed;
width:300px;
}
.td1 {
width:100px;
}
.td2 {
width:200px;
}
and in one of my .td2 con...
Hi All,
I have a JSP page where I load an arraylist which has the list of fields to be displayed.If the arrayList has nothing I will not load any inputbox else create as many input boxes as there are in arraylist which is done correctly.I keep a name field1,field2,field3...fieldn where n is the size of the array.Now When I submit my...
hi
I am working on an online music store. There are buttons like myplaylists, mydownloads etc...
On clicking on these buttons, a list of songs appears accordingly in a grid view.
The problem is that when i click on the buttons twice quickly the list appears two times like 1..4..8 1..4..8 and if i click thrice quickly it happens three ti...
I would like to setup my gallery web page so that when a user clicks on the thumbnail image, a window pops up displaying a larger view of the image. I do not mean a pop up window as in a browser window but a window that is loaded within that same page and can be closed. I am not exactly sure how I would go about doing this. Any ideas?...
Is it possible (using html / javascript) to ensure that the .xls file behind a html link opens up into EXCEL rather than within the (reduced-functionality) browser alternative?
<a target='_blank' href='http://etc/etc/Myfile.xls'> Mylink </a>
...
Simple question really. This works in all but IE6:
<html>
<body>
</body>
<select id="test" onchange="blur()">
<option name="one">One</option>
<option name="two">Two</option>
<option name="three">Three</option>
</select>
</html>
Is there anyway to get this working in IE6? JavaScript and JQuery hacks allowed.
Any ideas, remarks or tip...
Hello,
I don't know if this is possible/sensible, but I was curious to know if I can have my strings in javascript files have html highlighting. I discovered that strings in php could have SQL syntax highlighting, so I believe it is possible.
But, I don't know vim-scripting, so any help on this appreciated.
I am using the Better Javas...
Hi,
I just designed a portfolio website. I have a whole array of images that I want to keep in one line (with horizontal scroll). This only happens when I have set a fixed width for the surrounding div (in this case with class '.post-images'), wide enough to contain all images. This could be just fine if the amount of images and their w...
I am writing a web based files administrator. How can I have an html file be downloaded when its link is clicked instead of displayed.
...
I'm coding a web-portal for a set top box with a custom keyboard.
The keyboard has most of the standard character keys but no backspace!
Since there are some other free custom keys, I would like to map one of these to backspace when I'm in an input field or in a text area.
The question is: How do I programmatically send a backspace to...
I'm trying to create a mailto link that contains french accented characters as the subject and email body. Both HTML and URI encoding the chars does not work. Here is my code:
<a href="mailto:%20?subject=ce%20titre%20est%20cass%C3%A9.&body=travaux%20deja!%20cesser%20d'%C3%AAtre%20t%C3%AAtu">SEND EMAIL</a>
Same result occurs without U...
In html, if I create a html table with column like
<table><tr>
<td>This is your ID</td>
<td>021-000-00001</td>
<td>...</td>
</tr></table>
space and - will cause multiple lines when it is rendered.
So for space, the solution is:
<td>This is your ID</td>
but for dash sign -, even I replace it as , like
<td>021&mda...
I am trying to position an span element (let us call it "the tooltip span") relative to a input field. To do this, I am wrapping the tooltip span and the input field in another span element (let's call it "the wrapper span") that has position: relative. Then I set position: absolute on tooltip span. This makes the tooltip span position i...
I need to send an email from my iPhone app but the name of the sender needs to be included within the body.
I do not know how to do that.
...