Questions tagged as 'html'

1
answer

Select Items of a Select Multiple in laravel JS

View <div class="form-group"> <label class="col-sm-3 control-label" for="exampleInputEmail1">productos para la orden:*</label> <div class="col-sm-5"> {{ Form::select('products[]', $products, null, ['id' =...
asked by 12.05.2016 / 21:26
4
answers

Block Internet Explorer

How can I block Internet Explorer on my page? I need to avoid using my website with Internet Explorer 9 or less     
asked by 15.02.2016 / 19:00
3
answers

Apply CSS style to a row of an html table depending on a value

I have a common html table, with a column called "status", whose possible results are "yes" and "no". and I want to make all the rows whose state is="not" paint them in another color. How can this be done with jQuery? <table> <tr&g...
asked by 18.04.2017 / 18:14
3
answers

How do I enable an input disabled when selecting a select with jquery?

I have a select with two values (allow and not allow), and under this select two input disabled to type the password, the idea is that if you select the value allow me to automatically enable the input to enter the password ... I leave the sim...
asked by 10.03.2017 / 23:40
3
answers

Give color with JavaScript

I have this table: table, th, td { border: 1px solid black; border-collapse: collapse; } <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Ag...
asked by 25.07.2017 / 17:16
3
answers

How to correctly use the event click on Javascript?

Good day I do not understand what the error is, what I want is that when you touch Hello , change to Mundo function cambiardiv(){ var i=document.getElementById("a").click="Mundo" } window.onload=cambiardiv; <!DOCTYPE html&...
asked by 24.11.2017 / 18:24
2
answers

How to put and show an html file in my android studio project?

I would like you to help me with this topic, because I have a folder with html content, in the folder is the index.html, the css folder, the images folder and everything related to the page; I want to show this page in an activity through a WebV...
asked by 29.06.2017 / 16:39
4
answers

Scroll modify the scroll, how to do it?

I did this, what it basically does is hide the scroll, is there another way to do it? div { overflow: hidden; width: 188px; } .barra { height: 80px; overflow: auto; width: 208px; border: 1px solid gray; } <div&...
asked by 15.04.2017 / 14:39
4
answers

Change color a png image with transparent background

I have an image of a sky blue star, I would like to change the color to the star only. #estrella img{ height: 35px; } </html> <head> <title>Cambiar el color de la imagen</title> </head> <div id="...
asked by 15.10.2016 / 23:20
3
answers

Have a text appear centered, with space above and below

I was solving a very simple exercise and I ran into a problem in the alignment of the elements. I want the h1 to be centered. But the author of the tutorial uses *{ padding:0; margin: 0;} so that everything in the document is ce...
asked by 12.05.2017 / 21:19