Questions tagged as 'html'

3
answers

Second button replacing content of the first

With this code below when I click the mat button it brings me the data in a table. I would like that by clicking the sp button replace the contents of the table with another. Code: <button id="mat" class="button"><...
asked by 14.04.2016 / 16:30
1
answer

Hide DIV only in IE8

I have a small question, how do I hide a div (.laser) only in IE8? Preferably I would like to use only CSS or also JS     
asked by 15.04.2016 / 15:35
2
answers

Change image when selecting radio on form

Good evening, I'll provide an image and the code. I do not know how to do it, and I would like to learn it. NOTE: I do not want the image to change when I SUBMIT the form, I want it to change right after I click the option! Formulary<formmet...
asked by 04.08.2016 / 23:56
1
answer

Sliding-middle-out trait on top of image

I have an image and in the hover, I want to present a trace at the top of the image to grow from the middle out. example here (below "our programs"): link I'm using the code below, but I can not put the trace on top, and it does not leave t...
asked by 04.08.2016 / 13:44
1
answer

How to add item in API [closed]

I'm doing a basic forum just for testing, I'm using mongo and postman to add some things to test. But now, I want from the page, I send such data. Use http://localhost:3000/topico/cadastrar to add items. Follow the codes...
asked by 07.08.2016 / 03:11
2
answers

How do I get the value of an attribute in JQuery?

It is as follows: I need to make when a person clicks on an image, the 'display' attribute of an 'ul' is changed to block, and then, when that person clicks again, the value of the attribute is' none '. I wanted to get the value of the 'display'...
asked by 06.08.2016 / 21:05
1
answer

Doubt over cached files

I'm building a system in php, and I'm creating the design material that will be used in the system. I created 2 files, 1st Materia.js and 2º Material.css. Well in these files I'll put all CSS and JS. I will call the file on the login screen a...
asked by 05.08.2016 / 13:35
2
answers

Parameters in form action are not sent by GET method

I put several GETs in the same URL without any problems, all using BUTTON. link using <?php $acao = $_GET['inst']; $acao2 = $_GET['sala']; $acao3 = $_GET['ano']; $acao4 = $_GET['mes']; ?> The next GET would be 5 checkbox inside a...
asked by 06.04.2016 / 02:42
2
answers

Extensive file download on website

I have the following problem: In a website that I developed for a client, it contains a page for downloading audio, follows code for downloading the audio: <a href="<?php print base_url(); ?>web_files/uploads/radio/<?php echo $audi...
asked by 04.04.2016 / 14:48
1
answer

Filter items in one list and show in another

I need to filter elements from a list and show them in a result list. I made the following code: var ele = []; $('.search').keyup(function(event) { var val = $(this).val().toUpperCase(); $('.title').each(...
asked by 01.04.2016 / 06:06