What is Geolocation? Geolocation is a technology to retrieve current geographical location of a user. Why Geolocation Used? So consider an example that you are visiting a city for the first time and looking for sight-seeing locations close to your hotel. However, you do not know where to go and which places to look for. Therefore, it …
HTML5
HTML5 Color Input Type
The color is input type field which allows user to select color. The user can select from color picker. The color picker is often needed in certain web based application. The input element with type attribute whose value is color represents color for setting elements value to represent simple color. The browser would display a …
HTML5 URL Input Type
URL is another word for web address. URL stands for Uniform Resource Locator particularly used with HTTP. The web browsers request web pages from servers by using URL. In the web browsers, the URL of a webpage is displayed on top inside an address bar. It is an input field which contains absolute URL address …
HTML5 Week Input Type
The week input type is used to select the week and year by the user. The week type concept consist week-year number and week number representing a seven days of the week. It only specifies the week number and the particular year.The week type is used in <input> tag. Syntax of week Input Type Browser …
HTML5 Time Input Type
The time input type is used to specify the particular time by the user. It displays the time with hour and minutes without setting any time zone for it. It is an 12 hour format, so the user also have to set AM or PM while setting the time. The time type is used in …
HTML5 Datetime-local Input Type
The datetime-local type is used to specify the both date and time. It displays the complete particular date (year, month and date) and time(hour and minute). It is in 12 hour format, so the user also have to set AM or PM while setting the time. The datetime-local type is used in <input> tag. Syntax …
HTML5 Number Input Type
The number is input type is used for specifying numerical value. It is used to collect the number either it is integer or floating point. All known browsers use this as spinner which have up and down arrow at right side of the textbox to increase or decrease the number value. If we specify type=”number” …
HTML5 Search Input Type
search defines text field which is used for entering value such as string, numbers etc as per search requirements. In HTML5, we can define text box as search box instead of a normal box. It behaves like a regular text field. It is not just Google search or Yahoo search; it is like site search …