Questions tagged as 'html'

1
answer

How to pass multiple arrays to page in PHP

→ $scope.items = []; → dados = $('#meu_form').serialize(); I would like to know: how to send / receive / read the above arrays to a page in PHP? JavaScript: app = angular.module("app",[]); app.controller("control...
asked by 05.01.2017 / 01:27
1
answer

Field reading HTML tags in JSF [closed]

I would like in my field that I will add the text and send it to the bank, add for example a link ex: <a href="http://www.globo.com/" ></a> , however, when printing on the screen, coming from the bank, it printed the complete t...
asked by 03.01.2017 / 11:39
1
answer

Google Chrome - Full Screen Image Problem

The original image is this: link I'm using event click to call function "toggleFullscreen" . Follow the code: Html: <img id="image" width="450" height="350" src="http://4k.com/wp-content/uploads/2014/06/4k-image-tiger-ju...
asked by 30.12.2016 / 19:16
2
answers

Login Form

My login screen form HTML login.html ): <form class="form-signin" method="post" action="login.php"> <span id="reauth-email" class="reauth-email"></span> <input type="email" name="user" id="user" class...
asked by 12.01.2017 / 00:40
2
answers

Hide entire table row by javascript

Good evening, I'm trying to hide by javascript a whole line from the table below, can you help me? <!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; border-spacing: 0; width...
asked by 07.01.2017 / 03:55
1
answer

Stylized checkbox in Bootstrap does not work

Good afternoon, I stylized a checkbox group. Only clicking it is not checked. I followed all the steps to make the change and even then I can not leave it selected. Could someone see my code in codePen and tell me where I might be going wrong?...
asked by 18.12.2016 / 18:47
2
answers

Center items in a navbar when viewed on desktop

I'm using the following codes to create a navbar, but I would like that when viewed on desktop, the highlighted green items would be centered, but when viewed in mobile, it would remain exactly as in gif. CSSCodeul.bar-secondary{list-style-t...
asked by 25.01.2017 / 21:47
1
answer

ENTER key save table instead of space

I have the following table that lets you edit directly on the grid: Hercodes:  MySQLtableCREATETABLEIFNOTEXISTS'php_interview_questions'('id'int(8)NOTNULL,'question'textNOTNULL,'answer'textNOTNULL,'row_order'int(8)NOTNULL)INSERTINTO'php_inte...
asked by 20.01.2017 / 12:53
1
answer

Invert display of Xml in PHP

How do I reverse the display of an xml in PHP? Code: $xml = simplexml_load_file('link.xml'); foreach($xml->VERSAO as $versao) { ?> <tr> <td width="10%"><center> <?php echo $versao->VERTEXT ?> </center>...
asked by 08.12.2016 / 20:10
2
answers

Prevent multiple clicks on submit!

I have a form that registers the name of the person in a database via ajax, however sometimes it takes time to send and returns and I give 2 or 3 clicks it sends the same data! I wanted to know how to prevent this, I tried: <script>...
asked by 05.12.2016 / 13:15