Questions tagged as 'html'

1
answer

CSS - Triangulos con box shadows

I'm having a little problem with funds and box-shadows. As you can see in the image, the triangle (made with CSS) has as an edge that lets see that gap, breaking the shadows of the box-shadow of both elements. The code is as follows:...
asked by 23.05.2017 / 22:41
1
answer

How to collect all the image tags from an html page on RUBY

My program collects all redirection addresses but I could not do the same with the image tags require 'nokogiri' require 'net/http' pagina = Net::HTTP.get(ARGV[0],ARGV[1]) enlaces = Nokogiri::HTML(pagina).xpath('//a[@href]')....
asked by 06.11.2017 / 14:55
1
answer

Modify status: focus from HTML

I wanted to modify the :focus status of an HTML element from the HTML tag itself. Let me explain, for example I can define the styles on the label itself: <div style='background: grey'> </div> That in CSS would be e...
asked by 28.05.2017 / 22:38
1
answer

File upload does not work in Firefox

I have been working on an online storage server via the web. I have developed all the functionality of the system using servlets and I have all file management working. The problem is that the file upload does not work in the Firefox brow...
asked by 21.01.2017 / 17:17
1
answer

How to show the data of a database in a table in html and php

I'm new to php and html and I want to show the data in a custom table by bootstrap, this is my code <?php // Conectando, seleccionando la base de datos $link = mysql_connect('localhost', 'root', 'usbw') or die('No se pudo...
asked by 14.06.2017 / 02:57
3
answers

How to reload data table when closing a modal?

I use datatable to list some data brought from a database which I have a button to edit, that when I press it shows me a modal window, which I look for the form that was just updated that table is updated without having to reload the page...
asked by 14.02.2017 / 23:48
2
answers

Auntoincrementable in HTML

I have the following html code and what I need is for tb_header1 to increase the values of i , j en 1, and rangos go incrementing 1 the value of a (in each for ). {% for atributo in tb_header %} <td...
asked by 25.11.2016 / 04:53
3
answers

Get the attribute of a button with jQuery and Ajax?

$(document).ready(function() { $(".eliminar").click(function(e) { e.preventDefault(); var id = $(this).attr('data-id'); //alert(id); $(this).closest('.holder-cesta').remove(); //Esta parte no me funciona....
asked by 10.10.2016 / 20:39
2
answers

Hreflang, alternate and canonical

I have a website that has two versions: link : <link rel="alternate" hreflang="en" href="http://www.example.com/en/" /> <link rel="canonical" hreflang="es" href="http://www.example.com/" /> And the url link : <link re...
asked by 28.08.2016 / 21:44
2
answers

clearing Lightbox with Foundation 6

I need to click on an image to zoom in, and so far I have not managed to find something similar with Foundation 6, until I found an option in Foundation 5 called Clearing Lightbox, and its class is thumbs -clearing, is there something similar in...
asked by 01.12.2016 / 04:36