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 add a search box with icon to the navbar in Bootstrap 3?

I am using the new Twitter Bootstrap 3, and am trying to place a search box like this (below) in the …

css html twitter-bootstrap twitter-bootstrap-3
Can I write a CSS selector selecting elements NOT having a certain class or attribute?

I would like to write a CSS selector rule that selects all elements that don't have a certain class. For …

html css css-selectors
How to place div side by side

I have a main wrapper div that is set 100% width. Inside that i would like to have two divs, one …

html css
CSS: Change image src on img:hover

I need to change <img> source URL on hover. I have tried this but won't work : HTML <…

html css
Invoking JavaScript code in an iframe from the parent page

Basically, I have an iframe embedded in a page and the iframe has some JavaScript routines I need to invoke …

javascript html iframe
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 …

html css html-table
jQuery get selected option value (not the text, but the attribute 'value')

Okay, I have this code: <select name="selector" id="selector"> <option value="1">Option 1</option> &…

jquery html html-select
Google Maps API v3: How to remove all markers?

In Google Maps API v2, if I wanted to remove all the map markers, I could simply do: map.clearOverlays(); …

javascript html google-maps google-maps-api-3
How to remove the default link color of the html hyperlink 'a' tag?

The default link color is blue. How to remove the default link color of the html hyperlink tag <a&…

html css anchor html-helper
Call two functions from same onclick

HTML & JS How do I call 2 functions from one onclick event? Here's my code <input id ="btn" type="…

javascript html onclick