html

Why does this HTML looks different in an eBay listing than by itself?

This is the code by itself. This is how it looks by it self and how I want it to look. And this is how I don't want it to look but how it looks when I copy and paste the whole HTML to my eBay listing. I get the same results on Chrome and IE. I'm not sure if is OK to copy and paste the whole HTML to the eBay listing, but I also tried past...

How is drop down being updated?

This is realated to a much more complex earlier post, where I was trying to tie together js event handlers. I realized after reviewing my earler post that I am not sure how one of the behaviors on my site works so I wanted to post it as a new topic. Basically, I am working with a commercial wordpress plugin that uses a lot of very comp...

image on table <TD>

html code to make image size are same with table size. bacause i want to create a newsletter.. and how to set table size in html ...

Is there a plugin for Gedit to highlight matching HTML tags?

That'd be neat. I couldn't find one using google though. Anyone heard or seen something for Gedit or wanna make a plugin? ...

how to insert .mov file in html

I want to insert .mov file in my webpage My Code is: <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="320" height="255" codebase='http://www.apple.com/qtactivex/qtplugin.cab'&gt; <param name='src' value="ad.mov"> <param name='autoplay' value="false"> <param name='controller' value="true"> <param n...

Which HTML control is suited for a blog's standard page?

I want to code and design a blog without using any available scripts. I want to know which HTML control to use to display posts one after the other as in a typical blog. I am going to use Eclipse to code the same. ...

HTML as a cross-platform GUI ?

Context : This is for a software develop internally and used only by company's employees. Employees have windows, linux or Mac operating systems for the moment. Next, they may want to have a light version on their handheld devices. Pro : cross platform Con : may be not cross browser Pro : GUI code should be smaller. Con : but data ...

HTML Validator won't load!

Hi, I have NO idea what the problem is. I need to validate my website as part of a uni assignment on w3.org and for some reason, this page just will not load. The CSS and HTML validator pages won't load at all, it says "network timed out". I have no clue why this is, it's been like this since I can remember. I have reset safari, emptied ...

how to make flash in iframe appear under my popup window.

if i would place flash in a usual way, i could use wmode transparent. but I place flash on page with iframe (because it loads external files, with relative URLs, from another server) Also on a page I have JS popup window. But when opened, it's under flash in iframe. I need above. ...

video file in html

hi, Im trying to insert video file in my html webpage <OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320" HEIGHT="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"&gt; <PARAM name="SRC" VALUE="int.mov"> <PARAM name="AUTOPLAY" VALUE="false"> <PARAM name="CONTROLLER" VALUE="true"> <EMBED SRC="int.mov" WIDTH...

prevent floating divs from wrapping

<style> .header { float:left; width:50%; border:1px solid black; } </style> <div style="width:100%;"> <div class="header">Hello</div> <div class="header">World</div> </div> I want the two inner divs to appear beside each other fitting perfectly inside the parent. This happens when there is no border set on them, b...

Nice browser widgets AND background color, posssible?

I'd like to slightly change the look of some browser widgets (like changing the background color of required fields). But apparently this forces the browser to switch back from 'native'-looking widgets to boring common-look widgets. This is especially bad if you have both unmodified and modified widgets on the same page. Problem occurs ...

How to make website look same on all browsers?

Hi, I am designing my site on a mac. I used basic formatting and then when i want on to my pc, the wrapper width was too wide. My question is what can i do so that my website looks the same on all browsers/os? ...

Javascript loop limit to delete select list keeps changing

Hi, im trying to delete a HTML select list. This is what im using: var size = DID(SourceDiv + Number).options.length; DeleteSelectElements(SourceDiv+Number,size); function DeleteSelectElements(Div,Len){ var k; var Length = Len for (k = 0; k < Length; k++) { DID(Div).options[k] = null; } } DID just returns ...

Height of table needs to be same height as panel

In both IE8 and Firefox I am experiencing the following: I have a panel that is 30px in height, within this panel I have a single row table with 30px in height. When it displays on the browser window the table does not fill the height of the panel (there is a small amount of the panel showing on the top and bottom. How do I correct this...

<!--[if gte IE 8]--> not behaving as I expect

using the following code to prevent any version of IE prior to IE8 from loading a couple of scripts. The problem is the script is still loaded in IE7, and the conditional tags (which are within the header of the document) are actually being rendered out and displayed on the page!! <!--[if gte IE 8]--> <script src="<?php bloginf...

Show EMF File in IE 8

Hi, i would like to show some (about 5 to 10) EMF (Enhanced Metafile) Files in the IE 8. I use ASP to get all Files from a defined Folder and show them with the <img src=""> Tag. Some of the IMages are really big, so tried to reduce the size by setting its height to 100. Is this the correct way? The Images load very slow and not all ima...

Safely insert line breaks into HTML

I have an application allows a user to copy paste html into a form. This html gets sent as an email, and the email server will not allow more than 1000 characters per line. So, I'd like to insert line breaks (\r\n) into the html after the user has hit submit. How can I do this without changing the content? My idea is this: html.replace...

chars missing in textarea

Hi I have a textarea in a form, the data used ind the field comes from an sql call. When i load the form not all text is displayed, just the first line. But when i press space, inter, backspace or another button, all text is displayed anyone have a solution! /RMalberg ...

how do I filter by a substring in HTML?

I have the following function: var $content = $("#content"); var $map= $("#map"); $.each(plots, function() { var plot = this; var $plot = $("<a />") .css({ 'width': plot.width, 'height': plot.height, 'top': plot.top, 'left': plot.left, 'background': plot.color, }) .hover(functio...