Top "Html" questions

HTML (HyperText Markup Language) is the markup language for creating web pages and other information to be displayed in a web browser.

How to send a JSON object using html form data

So I've got this HTML form: <html> <head><title>test</title></…

javascript jquery html json forms
How can change width of dropdown list?

I have a listbox and I want to decrease its width. Here is my code: <select name="wgtmsr" id="…

html css list drop-down-menu html-select
Adding HTML entities using CSS content

How do you use the CSS content property to add HTML entities? Using something like this just prints &nbsp; …

html css html-entities css-content
Parse an HTML string with JS

I searched for a solution but nothing was relevant, so here is my problem: I want to parse a string …

javascript html dom html-parsing
Loading basic HTML in Node.js

I'm trying to find out how to load and render a basic HTML file so I don't have to write …

html node.js
What's the effect of adding 'return false' to a click event listener?

Many times I've seen links like these in HTML pages: <a href='#' onclick='someFunc(3.1415926); return false;'&…

javascript html
Center image in div horizontally

I have an img in a div (class="top_image") and I want this image to be exactly in the …

html css
Fit cell width to content

Given the following markup, how could I use CSS to force one cell (all cells in column) to fit to …

html css html-table
HTML Entity Decode

How do I encode and decode HTML entities using JavaScript or JQuery? var varTitle = "Chris&apos; corner"; I want …

javascript jquery html
How to prevent form from being submitted?

I have a form that has a submit button in it somewhere. However, I would like to somehow 'catch' the …

javascript html forms