Questions tagged as 'html'

1
answer

How to secure a service site before launch?

I have no experience with this and am about to launch a service site and wonder if what I have to do to protect my idea is her patent, software registration or trademark registration? These are the options that appear in the National Institute o...
asked by 01.10.2015 / 05:26
2
answers

Show Tabulated in a Table in HTML

My problem is as follows, I can only display the results in a alert , how would I put the values inside a table?    <title>-Calcular tabuada</title> <script type="text/javascript"> < function calcula...
asked by 25.09.2015 / 00:34
1
answer

HTML List with UL Image

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" aria-expanded="false"> <ul class="dropdown-menu">...
asked by 14.08.2015 / 16:54
3
answers

What is the best way to convert Javascript entities to Javascript?

Through English OS searches, I learned how to decode and encode HTML entities as follows: var wm = (function(wm){ wm.encodeHTML = function (html) { var t = document.createElement('textarea'); t.innerHTML = html; ret...
asked by 06.02.2015 / 17:44
2
answers

From one table to another html table

I have two table in an HTML page that is as follows: One with my selected subjects. Another one with the list of disciplines to select. PS: I'm just studying, I'm not using a database or something. So the tables are in this style:...
asked by 07.04.2015 / 16:15
1
answer

How do you know the number of "children" in a class?

For example, using for : var children = numero_de_filhos_de_uma_classe_qualquer; for (i = 0; i <= (children); i++){ document.getElementsByClassName("classe")[i]; } HTML <div class="classe" ></div> // Filho Númer...
asked by 11.07.2014 / 20:43
2
answers

Problem converting input text to capital letters

I have input and I want it to only allow capital letters in real time. This code seems to work perfectly. $("#texto").on("input", function(){ $(this).val($(this).val().toUpperCase()); }); But I noticed a bug and I do not know...
asked by 06.04.2018 / 15:10
2
answers

Disable button after the jQuery click

Well I'm having the following problem. JQuery identifies the data-link tag to retrieve the link and redirect the page. Soon after that the booting has to be disabled. The problem is that clicking the button is disabled and is not redir...
asked by 26.05.2017 / 13:49
3
answers

"import" header and footer on all pages

I'm doing some html / css / javascript pages and they will all have the same header and footer, I would like to know how to do the import without repeating all the code. Server in java. But can you do it in a simplistic way?     
asked by 23.06.2017 / 22:40
3
answers

How to send a HREF with POST method or disguise?

I would like from my href, it went to the "spincoin.php" page with the post method, sending the variable "1", how can I do that? Code: <div> <a href="spincoin.php"> <h2>Product</h2> <p>Cost:...
asked by 13.05.2017 / 01:00