tagged [html]

How can I create an editable dropdownlist in HTML?

How can I create an editable dropdownlist in HTML? I'd like to create a text field with a dropdown list that lets the user choose some predefined values. The user should also be able to type a new val...

16 Jul at 17:33

HTML table with fixed headers and a fixed column?

HTML table with fixed headers and a fixed column? Is there a CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and the first coloumn stay fixed an...

10 Dec at 18:8

How can change width of dropdown list?

How can change width of dropdown list? I have a listbox and I want to decrease its width. Here is my code: ``` Kg Gm Pound Metric ton Litre Ounce

How do I make a text input non-editable?

How do I make a text input non-editable? So I have a text input Here is my CSS for it Is there a setting or a trick to this, I was thinking of doing a label inst

29 Apr at 16:39

Center text in table cell

Center text in table cell I can't seem to find the answer to my issue. I have a table with two rows and two columns (like the code shown below), how do I center align the text in specific cells. I wou...

10 Jul at 17:44

How to tell which row number is clicked in a table?

How to tell which row number is clicked in a table? I have a table like the following: When a user clicks on the table, how can I get the index of this row (`tr` element)? For example, when I click on...

How to ensure a <select> form field is submitted when it is disabled?

How to ensure a form field is submitted when it is disabled? I have a `select` form field that I want to mark as "readonly", as in the user cannot modify the value, but the value is still submitted wi...

16 Nov at 15:52

Best Practices & Considerations when writing HTML Emails

Best Practices & Considerations when writing HTML Emails I've been developing websites for over a decade now, but quickly found that many of my habits in developing for the web are useless when develo...

19 May at 17:5

How to override td align="center"?

How to override td align="center"? As gathered from [Why align="center" not overriding on {text-align:right;}](https://stackoverflow.com/questions/2546857/why-aligncenter-not-overriding-on-text-alignr...

9 Jun at 22:3

Change select box option background color

Change select box option background color I have a select box and I'm trying to change the background color of the options when the select box has been clicked and shows all the options. ``` body { b...

Parsing HTML Table in C#

Parsing HTML Table in C# I have an html page which contains a table and i want to parse that table in C# windows form > [http://www.mufap.com.pk/payout-report.php?tab=01](http://www.mufap.com.pk/payou...

HTML image not showing in Gmail

HTML image not showing in Gmail I'm sending an e-mail newsletter in HTML. Inside the HTML I have something like `` When I open the newsletter with Thunderbird or Outlook, the image is being displayed....

16 Jan at 19:7

How to make a <ul> display in a horizontal row

How to make a display in a horizontal row How can I make my list items appear horizontally in a row using CSS? ``` &#8227; Inbox &#8227;

14 May at 23:45

Fixed Table Cell Width

Fixed Table Cell Width A lot of people still use tables to layout controls, data etc. - one example of this is the popular jqGrid. However, there is some magic happening that I cant seem to fathom (it...

10 Dec at 18:21

Form inside a table

Form inside a table I'm including some forms inside a HTML table to add new rows and update current rows. The problem that I'm getting is that when I inspect the forms in my dev tools, I see that the ...

23 Nov at 11:37

What is the &#xA; character?

What is the &#xA; character? What's the meaning of this char?

17 Jan at 19:31

How to deal with page breaks when printing a large HTML table

How to deal with page breaks when printing a large HTML table I have a project which requires printing an HTML table with many rows. My problem is the way the table is printed over multiple page. It w...

22 Jun at 19:37

CSS table td width - fixed, not flexible

CSS table td width - fixed, not flexible I have a table and I want to set a fixed width of 30px on the td's. the problem is that when the text in the td is too long, the td is stretched out wider than...

22 Jan at 22:31

Converting HTML to Excel?

Converting HTML to Excel? How to convert HTML template to Excel file

21 Oct at 09:59

What is the HTML tabindex attribute?

What is the HTML tabindex attribute? What is the `tabindex` attribute used for in HTML?

22 Jun at 12:15

HTML SELECT - Change selected option by VALUE using JavaScript

HTML SELECT - Change selected option by VALUE using JavaScript There can be many options in a SELECT dropdown. I'm creating a page where a user's profile is retrieved from the database and a form is s...

2 Dec at 09:53

How do I create an HTML table with a fixed/frozen left column and a scrollable body?

How do I create an HTML table with a fixed/frozen left column and a scrollable body? I need a simple solution. I know it's similar to some other questions, like: - [HTML table with fixed headers and a...

29 Oct at 06:49

Extracting Inner text from HTML BODY node with Html Agility Pack

Extracting Inner text from HTML BODY node with Html Agility Pack Need a bit of help with HTML Agility Pack! Basically I want to grab withing the body node of the HTML. So far I have tried this in vb.n...

27 Jul at 22:49

How to draw a dotted line with css?

How to draw a dotted line with css? How can I draw a dotted line with CSS?

1 Sep at 13:16

Get checkbox value in jQuery

Get checkbox value in jQuery How can I get a checkbox's value in jQuery?

1 Nov at 17:50