Questions tagged as 'html'

1
answer

Problems implementing the jQueryUI Accordion feature

And I did a quick search on this resource and found this page; link Then I created a folder with the name of GUJ and within this folder I put three files; One of JavaScript with the name of jquery-2.2.2.min.js and the other one with t...
asked by 06.04.2016 / 19:27
2
answers

Sending form to two php files

I have a curious doubt and maybe an idiot, but come on. Is it possible to send data from one form to two different files in php?     
asked by 03.06.2016 / 21:19
1
answer

Use of the ID attribute in the link tags

Is it appropriate to use the ID attribute in the tags? In what cases could I use it? What versions of HTML would support this type of reference? In this case, does the ID always have the selector function? In what other tags can we use ID...
asked by 07.06.2016 / 01:01
1
answer

How useful is this line? [duplicate]

I want to know what this line of code inside my HTML does? Why is it that when I delete it the site stops working? <script src="js/main.js?nocache=<?php echo md5(microtime()) ?>"></script>     
asked by 04.06.2016 / 21:24
1
answer

How do I copy the value of a DIV to another DIV with Javascript?

My problem is this: I have a page in html, and on this page, it has 2 divs. in the second div, I have a javascript that stores a value in a given variable. What I want is to display the value of this variable in the first div. Do you kn...
asked by 07.07.2016 / 16:58
1
answer

Cookies do not work

Hello folks a friend here in the forum helped me make a button and I thank him so much, it worked perfectly. But I failed to put cookies and I'm not understanding where I'm wrong (I was following a video on youtube to do it) <!DOCTYPE h...
asked by 07.07.2016 / 22:26
2
answers

How to pull horizontal scrollbar from my site?

/*-------Conf.CSS--------*/ body{ background-color:#FFF; } header{ background-color:#222; width:100%; height:78px; float:left; } .logo{ width:10.9375%; height:66px; float:left; margin-left:162px; margin-top...
asked by 19.10.2015 / 15:55
2
answers

(if / else if) with check box

I have the following problem: I have a decision structure that checks the check box. However, when I select the two boxes, the code still executes the commands that it checks if only one of the boxes has been selected, and with good reason, b...
asked by 17.12.2015 / 02:48
2
answers

Block special characters but allow hyphen

My code for blocking characters looks like this: $('#nome').on('keypress', function() { var regex = new RegExp("^[ 0-9a-zA-Zàèìòùáéíóúâêîôûãõ\b]+$"); var _this = this; // Curta pausa para esperar colar para completa...
asked by 06.11.2015 / 17:50
2
answers

What are the {} tags in the middle of the html

On a webpage with .html extension, you can not use the php tags right? But I saw in some pages html codes of type {CONTEUDO} which displays a text defined in a file php '$tpl->CONTEUDO = "texto" '....
asked by 09.03.2016 / 15:05