Most voted "html5" questions
HTML5 (Hypertext Markup Language, version 5) is a generic term for recent web technologies (HTML, CSS, and Javascript). It is also the latest iteration of the HTML Recommendation scheduled for 2014, and featuring new elements and Apis.
Learn more…3,881 questions
Sort by count of
-
2
votes2
answers1713
viewsHTML5 tables - subdivide column
I need to sweat the TD of the Steps and Circuits columns into two parts. The idea is that the word "Steps" appears in the TH and the values inserted in this column will be divided into <30 and…
html5asked 9 years, 10 months ago Israel Zebulon 1,758 -
2
votes1
answer97
viewsPassing data in javascript
Next, how can I pass data between two files with javascript? Example: Archiv11: <script> var dado = 'dado'; </script> Arquivo2: <script> alert (dado); </script>…
-
2
votes2
answers511
viewsJSON message does not appear
I have this code in PHP: if($qryInsert == 1){ //echo "Evento criado com sucesso!"; echo json_encode( array('status' => 1, 'msg' => 'Evento criado com sucesso!')); }else{ //echo "Erro ao criar…
-
2
votes3
answers11918
viewsEnlarge an image by clicking it (HTML5 and CSS3)?
I have a problem, in smartphone css3’s Hover is not recognized (or better, it takes about 5 seconds to be recognized), and I wanted to make an interactivity with the photos of my app, as I can not…
-
2
votes1
answer557
viewsHow to change mouse cursor
I want to change my mouse cursor I put my code and it does not work on png images and does not catch I have to use it with . cur even if yes how do I do it because in photoshop for example does not…
-
2
votes1
answer344
viewsGrid System Bootstrap
I’m riding this grid Bootstrap, but at last Row, it seems that the image gives a margin of the grid itself and is misaligned.. My semantics are wrong? <div class ="container"> <div…
-
2
votes1
answer2217
viewsPut HTML5 to read an RSS?
I don’t know much about these deals, I looked before posting here but I didn’t find anything, I don’t know if I’m looking for it right. I’m creating an app in Html5, css3 and javascript. I want to…
-
2
votes1
answer301
viewsjavascript does not take form attributes
I’m cracking my head to make my javascript copy to a new variable the values passed by a form in HTML. Someone could give me a light? My HTML is like this: <div class="imc"><!--primeiro…
-
2
votes1
answer8435
viewsUncaught Referenceerror: $ is not defined
Where did I go wrong? form test <script type="text/javascript" > $(document).ready(function(){ $('#meuForm').validate({ rules:{ nome:{ required: true }, email:{ required: true },…
-
2
votes1
answer808
viewsDisplay contents of the <link rel=""> tag on the html page?
I am trying to make an RSS reader, I searched and for that I used: <link rel="alternate" type="application/rss+xml" title="RSS"…
-
2
votes1
answer1307
viewsDifficulties connecting Javascript with HTML
A few months ago I took a course to insert myself in the job market as "Front End", I learned what was necessary, but now to put into practice Javascript is complicated, because in theory I know a…
-
2
votes2
answers439
viewsConverting values for calculation to JQ
How can I convert the value of an input 1,11 for 1.11, so it can be added to other values? This in jQuery. My input is masked for real values.
-
2
votes2
answers361
viewsCentering #Menu #Nav on the circular shapes page?
This is the HTML of this section: home #home.scroll br br .container .row a.scroll href="#oquee" .cir O que é a.scroll href="#local" .cir Local a.scroll href="#convidado" .cir Convidado a.scroll…
-
2
votes2
answers162
viewsSemantically, should I choose ul or article when displaying products?
I am marking the products listed on the home, I am using HTML5 to structure the pages, my intention is to define a semantic content. Because then I came across the following possibilities of…
-
2
votes1
answer363
viewsValidation ASP.NET Form in Bootstrap Tabs
I have a form on ASP.NET with its content divided into Bootstrap Tabs. However, some of these fields are required (Required) or are type="number" and "email", if they do not agree, sending the form…
-
2
votes2
answers11175
viewsHow to open a screen with a pre-filled form with PHP and HTML?
Good night to you all, i would like to know how to open a form whose fields are already pre-filled with user data (resulting from a search in the database), being in charge of it only edit the…
-
2
votes2
answers903
viewssite does not work in mobile version
I made a site that in turn should be responsive it will have to work on portable devices but I used a feature called Animate.css of this file I used the following effects :…
-
2
votes1
answer142
viewsHow to make video mute start
I wanted to know how to make my video start mute. I was able to program the controllers: there is a button that Uta and one that desmuta. Only that I wanted him to start already mute. Code in html:…
-
2
votes2
answers2982
viewsEffect of Parallax when mouse over
I’d like to know how I do that effect that has on that website or in that other. When I move the mouse over the image it moves. An important detail is that no matter where I pass the mouse, the…
-
2
votes1
answer420
viewsRemove video context menu from Vimeo
Someone would know how to remove the menu-context of videos from Vimeo because it has the option to "save as" that saves my video, even if it is private in my account the person can access…
-
2
votes2
answers765
viewsGet script from a DIV with JS
It is possible to take the SCRIPT from an element.. EX: <div id="form"> <div class="box"> <p>Pegar apartir da 'class="box"'</p> </div> </div> take the complete…
-
2
votes2
answers301
viewsThe space key also becomes a character? LENGHT
The space key also becomes a character? My problem is that even if in input #userChat there is only the space key it even so gives the alert(), and it ends up being a big problem.. Keys: Space and…
-
2
votes1
answer166
viewsJavascript style buttons
I am trying to make on a page, that buttons that are clicked change their style and also start to display a div when they are clicked. Only that they should be mutually exclusive, that is, when I…
-
2
votes1
answer90
viewsBootstrap menu, include logo
Guys, I’m using this menu: http://getbootstrap.com/examples/navbar-fixed-top/ Exactly the one of the link, I copied directly from there, the question is, where is written "Project Name", I have to…
-
2
votes1
answer541
viewsWhy isn’t my CONTROLLER picking up VIEW fields?
I am making a form in the VIEW, but the fields where I use radio and select(option) are not passing their values to the Controller. If anyone knows why. My view: @model…
-
2
votes1
answer977
viewsHow to "crop/slice" the image layout with HTML and CSS?
I have doubts about how to build the layout below with HTML/CSS: I haven’t implemented anything yet, because I have no idea how to do. Any suggestions? Thank you!…
-
2
votes3
answers496
viewsList json object returned by php
I need a help, I am developing an app with HMTL5, JS, CSS that lists a pizza menu. My PHP returns an array that I use the json_encode() to be available in JSON format. So far everything then I have…
-
2
votes3
answers178
viewsEffect of filling in a line
I need to do an effect like this on this site http://www.gt3themes.com/website-templates/timber/ well where this marked would like to know how does this effect and if you have any plugin for it…
-
2
votes1
answer755
viewsSection overwrite my header
I want to put my content just below the tag header but when I create my Action the content overlaps my header and I don’t know if it’s a good practice to take my Ction and apply a margin top follows…
-
2
votes1
answer1511
viewsResponsive menu does not close when selecting element
I made a responsive menu on a one page website. The scrolling part of the page is working normally, but the menu only closes if the user clicks again on the menu icon. I need the menu to close when…
-
2
votes1
answer3154
viewsHTML list with image in UL
I need something like this: <input type="image" src="~/Images/meu-icone.png" style="max-height: 15px;" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true"…
-
2
votes1
answer560
viewsCode for handling video components
I have a problem in my code that manipulates my video with mute and the volume however is not working follows my code: <!doctype html> <html lang="en"> <head> <meta…
-
2
votes1
answer1240
viewsHow do I install the Chromium package in Delphi?
I was using the Twebbrowser component which is based on Internet Explorer, but I have noticed that it runs disfigured HTML5 pages, I have heard about the Firefox package, but it did not run on…
-
2
votes1
answer61
viewsInteracting with the linux system
Is there any function or way to get javascript/Angularjs to communicate with linux? For example: <!doctype html> <html ng-app="myApp"> <head> <link rel="stylesheet"…
-
2
votes2
answers752
viewsToggle between hiding/displaying Ivs from links
I’m trying to adapt this script, which I found in this excellent reply from Soen, so that when there is a click on the link, the divs alternate. On the page there are several Ivs, and each one will…
-
2
votes1
answer3469
viewsFixed background in HTML5 CSS3
I put a background x on my site, with the css code: body { background-image: url("../imagens/back.jpg"); background-color: rgba(64, 118, 182, 1); background-repeat: no-repeat; background-size: auto;…
-
2
votes3
answers131
viewsWhy doesn’t the footer stay hidden and mess up the page
I need the footer to stay hidden and appear as I scroll the page, but something is going wrong I don’t know why. In that link is the example of how it should work. Follows my code: a {…
-
2
votes4
answers25607
viewsLoad page and scroll automatically to a particular element
On a contact page there is in respective order: a banner, map and form. How can I make sure that when loading the page is automatically scrolled down leaving the beginning of it from the map?…
-
2
votes3
answers360
viewsInput type="text" field does not fill data with more than one word
When loading a data into an input only the first word is loaded. Example: '</form> <input type="text" value='.$result->name.' >'; $result->name contains the value "Hello World".…
-
2
votes0
answers164
viewsMongodb + Intel XDK
I need to use Mongodb inside the Intel XDK, to log in, register, save coordinates, then display on a map, etc... Anyone have any tool suggestions? Thanks in advance!
-
2
votes1
answer341
viewsHow to "capture" an IP stream stream stream using HTML 5
I am using the Viewer DVB to transmit TV signal over the network. Using, for example, the VLC, I "pick up" the network stream and have the broadcast. I would like to know how to do this using HTML.…
-
2
votes1
answer739
viewsVideo does not get 100% height and width correctly
I have a problem in my tag 'cause I wanted to leave her with a width:100% and the height:100%; but without losing my video quality it would have to look like that website here opened some topics…
-
2
votes0
answers99
viewsProtect Content Player Language
Next, I would like to use some component of player in html that did not display the Access to running content. Has anyone ever seen a scheme that renders a player in the browser, but when someone…
-
2
votes2
answers2247
viewsExchange of content between pages with Javascript
I need to exchange a text that is in a <p> from one page x to one page <p> one-page y. As part of a bimonthly presentation (course work) I can use HTML, CSS3 and Javascript. You can do…
-
2
votes1
answer43
viewsAngularjs Routerprovider configuration error
I imported the angular-route.js and made the following configuration : <script type="text/javascript"> angular.module("layoutxepa",["ngRoute"]); angular.module("layoutxepa").config(function…
-
2
votes1
answer48
viewsHow to break an image into pieces using javascript and place it in their respective Ivs
I would like to know how is made this separation of the image in smaller Ivs within the div itself following the example of this link: http://www.2meter3.de/jqPuzzle/demos/o1.html…
-
2
votes1
answer172
viewsImage spacing with HTML5
When I put an image it automatically comes with a spacing above and below the image of approximately 5px, I wonder how to remove this spacing I tried to put border: 0px and margin: 0px and did not…
-
2
votes1
answer626
viewsIncompatibility between onkeyup and date mask?
I’m having a problem using onkeyup in a date mask which is as follows: when I try to use Backspace to modify the date, I cannot pass the bar (only the button is pressed). The bar keeps disappearing…
-
2
votes1
answer909
viewsload Google maps API after onload
I have a system that currently works with the google maps api, but I realized that the site is waiting for this API to be loaded to finish loading the page. on the home page(index.php) I have the…
-
2
votes1
answer175
viewsUsing Header from another Wordpress site
I need to develop a site in Wordpress, where I have to use the header (menu) of another site also in Wordpress. One solution I found was to soak the same via Iframe, however, would have a delay a…