Questions tagged as 'html5'

3
answers

How to capture the innerHTML of a documentFragment via Javascript?

The documentFragment that is created using the document.createDocumentFragment() method does not contain the innerHTML and outerHTML equal properties derived from HTMLElement tem. But I need to get the conten...
asked by 25.02.2014 / 21:31
2
answers

How to change between texts according to time?

How do I get alternating time-bound text in a div? I do not know the command in jQuery, I tried the code below but it does not work. <!DOCTYPE html> <html> <head> </head> <body> <div id="frases">&l...
asked by 03.07.2014 / 15:43
2
answers

Single Page Application with jQuery

How can I develop a SPA with jQuery? I did with AngularJS with the following code, however I am having difficulties to migrate to it definitively and decided to keep with jQuery so as not to be late. var myapp = angular.module('myapp', []); my...
asked by 22.11.2014 / 22:41
1
answer

Modal that opens only the first time [duplicate]

I'm new here, I have a modal that opens automatically, I wanted to make it open only the first time for the user. I saw you have a way to do with cookies. insira o código aqui <!DOCTYPE html> <html> <head> <meta name="...
asked by 28.06.2018 / 02:10
1
answer

Shadow in svg - CSS

I need to apply the "external brightness" effect of photoshop to an SVG logo. the logo is being referenced by the tag image: <img src="imagens/logos/erp.svg"/> And I could not apply the text-shadow effect to the page CSS. How can...
asked by 09.07.2018 / 15:17
2
answers

How to put a click event in a drawn primitive form?

Imadeananimationandwouldliketoputthepauseandplaybuttonsusingthesedrawingsinprimitiveforms.functionbotaoPlay(){contexto.beginPath();contexto.fillStyle="rgb(255,255,0)"; contexto.moveTo(430, 450); contexto.lineTo(460, 465); contexto.li...
asked by 10.10.2014 / 15:41
1
answer

Uploading multiple files using Uploadfy in ASP.NET MVC

How to implement multi-file upload with uploadf ? I find it very interesting to use the upload bars etc. is giving this error: Thisismycontroller: You may notice that you have many error messages as well. View Code: <script t...
asked by 13.03.2014 / 21:29
1
answer

Infinite text with jQuery

Would it be possible to set using jquery 3.3.1 a standard character that can not be removed to an input? ex: An input has a @ , and only 20 letters and / or numbers can be added after this @ , but @ does not delete. I tried setting using the...
asked by 02.08.2018 / 05:11
2
answers

Value of a text variable do select a Select item in javascript

I have a variable var text that receives pre-determined values, and I want the value to select the item from the select field example: var texto = 'Volvo'; <select> <option value="1">Volvo</option> <option v...
asked by 24.07.2018 / 01:12
1
answer

How do I remove the row separating the columns in an html table?

I would like to know how I can remove the row separating the columns from this table. table { font-family: url('../fonts/Lato-Regular.ttf'); border-collapse: collapse; border-radius: 4px; width: 500px; } td, th {...
asked by 29.07.2018 / 03:40