Questions tagged as 'html'

3
answers

Meta tag for geolocation

I was looking for meta tags for geolocation, to help search engines know that the information on my site refers to a specific city. I found this site that generates the following tags for an address I typed: <meta name="geo.region" con...
asked by 23.01.2017 / 20:54
2
answers

How to keep the divs aligned one on top of the other?

- I am extremely new to the subject and do not know much, I'm going from internet searches, videos and readings, I say this in case there is any unnecessary code or rule in my doubts p> I would like some help in this situation: I'm traini...
asked by 04.03.2017 / 00:11
1
answer

Send data to upload images through ajax

<script type="text/javascript"> $(function(){ $("#oformulario").submit(function(e){ e.preventDefault(); var nome = $("#nome").val(); var email = $("#email").val(); var obs = $("#obs").val();...
asked by 20.08.2014 / 23:54
4
answers

Close Mozilla tab, IE, Chrome

I'm trying to close a tab on my site, I've tried using the following commands: window.open('','_self',''); window.close(); window.close() self.close() var win = window.open("","_self"); win.close(); wi...
asked by 28.05.2014 / 16:08
3
answers

About fixed footer position only at bottom of page

I have a layout with a fixed menu on the left, the content of the page occupying the rest of the space and a footer also fixed: * { margin: 0; padding: 0; text-align: center; } nav { z-index: 2; width: 25%; height: 10...
asked by 28.09.2018 / 18:35
2
answers

Send checkbox with ajax jquery php

I have the form to send / work perfect with the other fields, but I can not receive the checkbox selections. I need help getting / manipulating in php: HTML: <div class="input-group"> <label for="servicos">NECESSITA EMBALAGE...
asked by 10.05.2016 / 21:33
1
answer

Is there a difference in creating HTML elements in javascript?

Is there a difference in creating HTML elements in javascript? Example: As String: document.body.innerHTML += '<h1>foo</h1>'; And with createElement: var elemento_pai = document.body; var titulo = doc...
asked by 11.03.2016 / 18:00
1
answer

How to prevent the contents of an element from being copied after Ctrl + A and Ctrl + C?

I have a page and I want to allow copying normally, but I would like specific elements not to be copied after using Ctrl + A and Ctrl + C , for example forms, navigation menus and banner ads. This is because the content is usually what...
asked by 08.04.2016 / 20:53
1
answer

How to link a specific div from another PHP page

I have a one page site, where I have an external page with a menu, and the same one has to link the DIVS of my home (one page). Example: On my external page, clicking on the Videos menu, I'll go to Div from the One Page page. When I try to li...
asked by 25.11.2015 / 13:40
1
answer

Accessing html objects in code in asp.net c #

I have a page that contains asp.net and html objects. How do I access design html objects in .cs with C# ?     
asked by 25.05.2015 / 21:52