html

what does that mean <td class="bodytext2">

I see it in the jsp pages and not sure what it means? <td class="bodytext2"> it causes text to display blue, and I don't want it ...

Browser Based Uploads to Amazon S3 ?

Amazon has instructions on how to write a form that posts directly to Amazon's S3 service via HTML POST. However, they are not very clear on how to create a simple form to upload directly to an S3 bucket, and never give an actual example html file... Is there a good example available where I can view the sample code? ...

Option for page range while printing html

If i have 1000 pages of html can i provide option for page range while printing html? Is it possible in javascript? (Ex: print page 100 to 200) ...

In the DOM are node ids case sensititve?

Is this HTML valid? Or is the id 'a' the same as the id 'A'? <div id="a">alpha</div> <div id="A">Alpha</div> ...

Extracting text fragment from a HTML body (in .NET)

I have an HTML content which is entered by user via a richtext editor so it can be almost anything (less those not supposed to be outside the body tag, no worries about "head" or doctype etc). An example of this content: <h1>Header 1</h1> <p>Some text here</p><p>Some more text here</p> <div align=right><a href="x">A link here</a></div><...

html and swf swapping (display html while swf file loads to 100%)

This is what I want to achieve. While the swf file is loading, wrapper div displays an html content (e.g. text content). When the swf file has loaded 100%, it replaces the text content within the wrapper div, and then plays within the wrapper div. When the swf file is finished playing, it is then replaced with the previous text content...

Downloading .net project from link

Hi, I found this site that has a link to a .Net project. The link is to a folder structure. How do I down load this project without SVN?? Is it specific SVN?? http://svn2.assembla.com/svn/nbdn_web_store/ Source Code ...

The best way to "clear: both"

Hi For long now, I've been using a CSS class called clear, which only has the rule clear: both. I use it in the following way (shown in Django-syntax, but it is unimportant): {% for item in collection %} <ul class="horiz"><!-- horizontal list --> <li>{{ item }}</li> <li>{{ item }}</li> </ul> <div class="clear"></div> {% e...

jquery get all values from table column

I'm looking for a way to populate a select box with unique values from a table column using jQuery. So far my attempts have been futile but I am relatively new to front end development so I'm hoping someone can show me the light. Cheers. ...

using text-align center in colgroup

i have a table in my page, i use colgroups to format all cells in this column the same way, works good for background color and all. but cannot seem to figure out why text-align center does not work. it does not align the text centered. example: <table id="myTable" cellspacing="5"> <colgroup id="names"></colgroup> <colgroup id=...

Splitting HTML into multiple columns with Javascript/jQuery

Note: This is an alternate planned approach to this question: http://stackoverflow.com/questions/1238138/multiple-column-articles-in-joomla I've got a client who wants a multi column layout, which should be generated automatically from a non-column HTML block. What is the feasibility of using JavaScript (and jQuery) to create a multi-...

PHP mail cannot show links when sending html mails to thunderbird

Hello. I have this script that works ok. Trouble is that when I make Click here You cannot click the link in Thunderbird mailing program (Mozilla). If I see the source code it is okay. What gives? public function send_mail($email='',$subject='',$text='') { $mail = new PHPMailer(); $db = new Db(); $sql = $db->query("SELECT *...

What books to start on web programming for an experienced non-web programmer?

No surprise here, possible dupes: Good Books for Learning Web Programming Required Reading for a Soon to be Web Developer and there will be more. For a personal project, I'm starting to do some web programming using Django. I've programmed since I was very young on several languages, mostly Pascal/Delphi, C/C++, SQL Pyt...

C# Excel file OLEDB read HTML IMPORT

Hi, I have to automate something for the finance dpt. I've got an Excel file which I want to read using OleDb: string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=A_File.xls;Extended Properties=""HTML Import;IMEX=1;"""; using (OleDbConnection connection = new OleDbConnection()) { using (DbCommand command = con...

special characters not showing on page

Hi, I have meta tag as given below: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"/> <meta name="keywords" Content="“SAT Course” “SAT exam” “SAT Prep” “SAT Preparation Course”" /> <meta name="description" Content="Take Kaplan’s SAT preparation course. We use proven score raising strategies a...

Two columns in div - Which one to use 1) float along with margin or 2) Two floats

Hi, I have two divs in a container. One is left bar and another is right bar. I need some advice/suggestions to use which method. Method 1: #container{ width:800px; margin:0 auto;} #leftbar{ float:left; width:200px; } #rightbar{ float:right: width:550px;} Method 2: #container{width:800px; margin:0 auto;} #leftbar{ float:left; width...

Printing HTML pages differes from browser to browser

I am trying to take printout an HTML (has 1 page) Firefox 3.1 is taking 2 pages and Firefox 3.5 is taking 1 page. Donno what IE does. Is there any way to globalize the printing thing (thru css or any method) so that it will print exact page that it shows. ...

How to Print a Javascript Variable in a Table?

Hello all, In a table I'm making I have a Radio Button variable named 'cost' and I want to print the 'cost' variable in the footer of the form in a sentence like 'Make the check out for <>' Please, can someone give be some guidance as to how to do it? Many many thanks, TEH <table id="gradient-style" summary="Throttle Conversion"> ...

Relative Positioning Div

I've created a div and add 2 divs to it: <div id="content"> <div id="a"></div> <div id="b"></div> </div> and the styles: #content { width:100px; height:100px; background-color:blue; } #a, #b { position:relative; top:0px; left:0px; width:100px; height:100px; background-color:red; } #b { top:-100...

Can you find anything bad in this layout?

CSS code: #wrapper {margin:auto; width:100%;} .container {display: table; width:100%;} .row {display: table-row;} .cell {display: table-cell; height: 100px;} #left {width:150px;} #right {border: 1px solid red;} HTML code: <div id="wrapper"> <div class="container"> <div class="row"> <div class="cell" id="left">this is fixed width</di...