html

How can I make a TextArea 100% width without overflowing when padding is present in CSS?

I have the following HTML snippet being rendered. <div style="display: block;" id="rulesformitem" class="formitem"> <label for="rules" id="ruleslabel">Rules:</label> <textarea cols="2" rows="10" id="rules"/> </div> This is my CSS: textarea { border:1px solid #999999; width:100%; margin:5px 0; padding:3px; } ...

What is the easiest way to display an editable list(like a spreadsheet) in HTML?

We have a requirement to display an editable list in a web page. What would be the easiest way to do that? Farpoint Spread was something I have used to achieve this earlier but it was quite slow when a large number of records were involved and it needed to be coded in VBScript. Besides it wasn't free. I would be looking for a JavaScrip...

How do I get HTMLDOC launched from a CGI-script?

Task Have a CGI-script which produces an .*pdf file from the html-content/page Problem: When launched from the web browser, there is no creation of the pdf document. Steps So far: chmod settings set to above recommended (777) tested normal output to file from the script, which works fine when run locally on the server from the comma...

Wrap an image in an a tag, but only have underline on text.

I want to have it so that only the text is underlined. The only way I can see of doing this is this: .no-underline { text-decoration:none; } .underline { text-decoration:underline; } <a href="#" class="no-underline"><span class="underline">Average customer review rating</span><img src="img/five-stars.gif" alt="five stars" width=...

Busting out of an iframe using meta-refresh or javascript?

I basically have a page which shows a "processing" screen which has been flushed to the browser. Later on I need to redirect this page, currently we use meta refresh and this normally works fine. With a new payment system, which includes 3D secure, we potentially end up within an iframe being directed back to our site from a third pa...

How to consume data from an ASP.NET MVC from a different website?

I am playing around with ASP.NET MVC for the first time, so I apologize in advance if this sounds academic. I have created a simple content management system using ASP.NET MVC. The url to retrieve a list of content, in this case, announcements, looks like: http://www.mydomain.com/announcements/list/10 This will return the top ten ...

Remove the Query String from a Url in HTML with a Regular Expression

Given a html document, what is the most correct and concise regular expression pattern to remove the query strings from each url in the document? ...

regex for html parsing (in c#)

Hello, I'm trying to parse a html page and extract 2 values from a table row. The html for the table row is as follows: - <tr> <td title="Associated temperature in (ºC)" class="TABLEDATACELL" nowrap="nowrap" align="Left" colspan="1" rowspan="1">Max Temperature (ºC)</td> <td class="TABLEDATACELLNOTT" nowrap="nowrap" align="Center" colsp...

What's the difference between <b> and <strong>, <i> and <em>?

What's the difference between <b> and <strong>, <i> and <em> in HTML/XHTML? When should you use each? ...

A question of style - approaches to styling and stylesheets

I have a site that usually has news items at the top of the homepage, and sometimes (for specific periods) will have one or more 'quicklinks' beneath the news items, to guide users to pages of topical interest. Beneath those is the usual blurb. We have alternative language versions of these sites, which often don't contain either the ne...

Is there any fast way to get an <option> from a <select> by value, using JavaScript?

I have a <select>. Using JavaScript, I need to get a specific <option> from the list of options, and all I know is the value of the option. The option may or may not be selected. Here's the catch: there are thousands of options and I need to do this a few hundred times in a loop. Right now I loop through the "options" array and look fo...

How can I remove and transform selective HTML tags?

Hello, I have a csv file of the format: 270291014011 ED HARDY - TRUE TO MY LOVE - Cap NEU 2008 NEU 0,00 € 0,00 € 0 1 0 22.10.2008 03:37:10 21.11.2008 02:37:10 21.11.2008 02:42:10 50 0 0 0 39,99 € http://i7.ebayimg.com/02/i/001/16/0d/68af_1.JPG?set_id=800005007 0 2 8.10.2008 13:40:20 8.10.2008 13:40:20 80587 0 <table bordercolordark=...

Dynamic resizing / repositioning of divs for multi-column viewing

Setup I have a website that draws RSS feeds and displays them on the page. Currently, I use percentages on the divs that contain each feed, so that multiples can appear next to each other. However, I only have two next to each other, and if the window resizes, there can be some ugly empty space on the screen. Desire What I'd like to ...

How might I update this code

<object height="25" width="75" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param value="http://click-here-to-listen.com/players/iaPlay13.swf?x=1058286910FTRZGK" name="movie"/> <param value="high" name="quality"/> <...

Does opacity:0 have exactly the same effect as visibility:hidden

If so, does it effectively deprecate the visibility property? (I realize that Internet Explorer does not yet support this CSS2 property.) Comparisons of layout engines See also: What is the difference between visibility:hidden and display:none ...

Does noscript get acknowledged by javascript enabled browsers?

I'm looking into tightening up our ad code by moving it to an external jQuery script, but I obviously still need some HTML to target the ad to. So I was wondering if I can target a noscript element (or within a noscript element) since I'm going to have to leave that on the page anyway, or if I need to have some other element for the Java...

Open/Close Icons

I'm doing some shennanigans with jQuery to put little plus/minus icons next to my expanders. Its similar to the windows file trees, or firebugs code expanders. It works, but its not specific enough. Hopefully this makes sense... $('div.toggle').hide();//hide all divs that are part of the expand/collapse $('ul.product-info li a').to...

Vertical (rotated) text in HTML table

Is there a (portable) way to rotate text in a HTML table cell by 90°? (I have a table with many columns and much text for the headings, so I'd like to write it vertically to save space.) ...

HTML single quotes a "problem"?

I am a big time user of using double quotes in PHP so that I can parse variables without concatenating strings. As a result, when I am generating HTML I often use single quotes for setting tag fields. Example: $html = "<input type='text' name='address' value='$address'>" ; Now this is far more readable to me then either $html = "<i...

Best "process" to change over plain HTML pages to ASP .NET aspx pages?

I have some pages on my site that are plain HTML pages, but I want to add some ASP .NET type functionality to these pages. My concern is that if I simple rename the .html page to .aspx that I will break links, and lose SEO, and so on. I would think there is a "best practice" for how to handle this situation. ...