Questions tagged as 'html'

1
answer

Difference between the contents () and html () methods

I had to get the content of an iframe (which was in the same domain on the same page) with html() , but without success. I saw that there was a method called contents() , and it worked fine using it. Why a goddamn one and not...
asked by 09.04.2015 / 22:31
1
answer

New row in the table every 3 columns

I have a table that has to have 3 columns per row. The data from the 3 columns I get from the bank. My problem is that when I display 3 columns, I want the next results to appear on the bottom lines, ie display 3 at 3, but I'm not getting it, be...
asked by 05.05.2015 / 02:04
2
answers

Create Editable Table

I would like to create a table where your cells can be edited but meet certain requirements. What I have is this: HTML <table class="table table-striped table-bordered" id="vendaTabela" width="100%"> <thead> <tr&g...
asked by 26.02.2015 / 11:38
2
answers

Repeat header in print

I can not divulge the report I'm using, so I've taken a generic template on google to help me explain the question. Assuming my report is as follows: ThesameismountedviaHTMLonasystemthatworkswithbothC#andVB.Net.Myintentionisoneachprintpage...
asked by 13.05.2015 / 19:35
3
answers

Is there any way to write a function on the screen other than by onclick? [closed]

Hello, the only way I can call a javascript function in html is by onclick, but my html is not a button to click, I would like to know if there is another way to display a function when it is called. ex: onload -> para quando a tela carregar...
asked by 13.10.2017 / 20:25
3
answers

How to receive a POST without the form tags in PHP?

<?php if(isset($_POST['pagando'])) { //faz alugma coisa } ?> <input type="submit" name="pagando" value="PAGAR"> It gave a general white here personal. How do I send pagando to PHP without input being ins...
asked by 12.08.2015 / 21:41
3
answers

Center divs - Bootstrap

Well, I split the content part into two divs, col-md-6, but they are not centralized relative to the site, although they are in the center, they are placed on the left side, leaving the right side a bit empty. Follow the divs code.              ...
asked by 16.07.2015 / 14:28
2
answers

Create function that simulates typing

I need a function, or some plugin that simulates typing, that is to say that it has a cursor, and that it is typing and deleting words; One site I found by example was este. (The typing effect on the banner). But I could not find in...
asked by 26.12.2017 / 10:11
3
answers

A single script for N forms

I need to know what the correct way for when I submit a form a single script to resolve, the code below only works for your self to create a script for each form. How do I resolve this? Example: $("#meuform") ... $("#meuform2")...
asked by 04.06.2014 / 02:42
2
answers

Placing scripts and css links in an html document

I've always put the scripts and links to the CSS at the top of the document in the head of the document. Now I realize that there is another concept in which the calls to scripts and CSS are at the bottom of the document html , in the last...
asked by 11.06.2014 / 18:57