Questions tagged as 'html'

1
answer

clean a select in jquery

When making a query through ajax, the parameters that I am sending are sent by selects but the problem is that once the query is done the values remain there and they do not want to erase me, I used the option empty() but when I do, the o...
asked by 09.03.2018 / 18:56
3
answers

CSS does not load correctly when I upload it to my hosting

I have a problem that is killing me. Working with Brackets I can see my page correctly done on my local server, but when I upload it to my hosting server it is not displayed correctly. The problem arises in the div with class ".text-fixed"...
asked by 02.02.2018 / 16:40
2
answers

Why does the if statement not work with the getElementById?

What I try to do is that every time I click on the button it shows me the following image. However, it does not work. In some websites they say it does not work because the route (img.jpg) is not correct as a condition, but I do not understand...
asked by 30.12.2017 / 01:15
2
answers

Delete BD record with PHP

Hi, I have a little query to see if anyone can help me. I have a table that connects to my database and brings the records, and now I need that in my table, in each record, there is a delete record button. I have the button created as shown i...
asked by 30.12.2017 / 11:12
2
answers

Angular - Different CSS style sheets for the same component

I have a section that is repeated in several components and CSS styles are the same for all of them. To make the code cleaner, I have removed the repeated styles from each of the CSS style sheets of the components and put everything in the style...
asked by 29.12.2017 / 19:53
1
answer

JSON Object as Select value - Angular 2

Object export class Car { ID: String; dors: [{ number: Number, postion: { x: String, y: String, z: String, } }] } It is possible to define the value of a select as an object and not...
asked by 12.01.2018 / 11:50
2
answers

Fixed Column, HTML Table with BOOTSTRAP 3

I need the first column to be fixed, "fixed", that is, I can scroll on the X axis and continue to show the data in the first column. I'M USING BOOTSTAP 3 table { display: block; overflow-x: auto; white-space: nowrap;...
asked by 12.01.2018 / 18:03
1
answer

Help with a code in ASP.NET [duplicated]

I hope you can help me with the following code that I have in visual studio, I am programming a user login, in asp.net with c # and it turns out that in my aspx form called PortalAlumons.aspx.cs I wrote the following code: protected void P...
asked by 03.01.2018 / 05:27
2
answers

Does not register data in the MySQL DB from a form

I have managed to show the data of my BD in a table, but at the time of registering new data from a form, I simply do not create them, and I do not know where the error is (I am new in php) insert.php <html> <head> <...
asked by 27.12.2017 / 18:23
2
answers

Help with a function that validates Letters - JavaScript

Hello, I have the following code that I got (It's in JavaScript) which validates the entry of only characters; and not special numbers or characters; within a input : Code: function SoloLetras(e) { key = e.keyCode || e.which; tecla...
asked by 27.12.2017 / 02:02