Most voted "html" questions
Use this tag when the question refers to some resource, information or problem related exclusively to the HTML language (Hypertext Markup Language). HTML is the main markup language used to structure web pages and format content. The latest revision of the HTML specification is HTML5.
Learn more…14,259 questions
Sort by count of
-
1
votes1
answer961
viewsCatch only the month of a selected JS date
As an example below, I would like to take only the month when selecting a date and insert in the Mes field with JS. <link rel="stylesheet"…
-
1
votes0
answers167
viewsHow to call a function within Frame?
I want to call a function I have inside a iframe. I program in Ionic and wanted to know how to do it through Javascript or HTML. Inside Javascript I have a variable (Z = 2.5, only one example of…
-
1
votes1
answer77
viewsDate Picker Jquery display in d/m/Y format and write to database Y-m-d format
I am using this datepicker in my project, already this configured as you can see below the Dateformat in d/m/Y format, more like when I went to save in the bank it would convert to Y-m-d format, how…
-
1
votes3
answers1353
viewsFile link for viewing / downloading / printing
Setting I have a list of files dynamically generated, and would like to have 3 options: Open up: display in browser (if it is PDF, JPG, etc); Download: download directly; Print out: send straight to…
-
1
votes1
answer119
viewsText larger than the button
I got a problem I can’t seem to solve. I made an accordion, as in the image below using bootstra 4, the desktop version of it looks like this: But the cell phone version the text gets bigger and…
-
1
votes1
answer201
viewsHow to control height within a Grid?
Currently, I have the code below, I would like to descend to marca and meta to the edge of the red line, how can I move them ? html, body { width: 100%; height: 100%; margin: 0; padding: 0; } body {…
-
1
votes1
answer252
viewsSplit query result into columns
I have a select that brings items with prices, as I do to divide the result into two columns: Examples: I hope to leave it this way: Follow my code: <html> <head> <meta…
-
1
votes2
answers63
viewsHow do I make a text that recently adds to the code stand at the top of the page?
Look at this example code: <article> <div> <ul> <li> </li> <li> </li> <li> </li> <li> </li> </ul> In my code inside each li…
-
1
votes2
answers204
viewsI’m not getting to work with localStorage
I have the following javascript code: const player1 = "X"; const player2 = "O"; var playTime = player1; var gameOver = false; var pontuacaoX = 0; var pontuacaoO = 0; var chaveX = 'scoreX'; var…
-
1
votes1
answer219
viewsSVG with bottom 0 on footer and still with white space
Good afternoon I have a problem in my layout, svg is in the footer position and I can’t remove the blank at the bottom of the page. I tried on the body I don’t think it’s his property. <svg…
-
1
votes1
answer35
viewsFields as checked or not, always bring the same value
Good morning, good morning. I am with a certain problem, where should be made the choice of 3 check fields, if the 3 fields are unchecked, return the empty field message, otherwise bring the values…
-
1
votes1
answer37
viewsValue does not fit inside the text box
Hey, what’s up, guys? So, I have a problem, I made a function that returns data from a certain table field, so to insert it into the text box of a form; but, the returned value of the field appears…
-
1
votes3
answers840
viewsHow to set a limit of 4 images per line?
I want to place a row of 4 images with a small text below each image, I already know how to do this, but I have many images and I need each row to have a maximum of 4 images. I tried to do this…
-
1
votes1
answer859
viewsThymeleaf passing 2 parameters to URL
Good evening, everyone, I have the following problem: I am trying to pass 2 parameters in the URL using Thymeleaf, but I am not able to recover the value of the variable "name" to pass in the second…
-
1
votes1
answer55
viewsJavascript - window.innerheight - Browser Safari
Window.innerheight does not work in Safari browser. When I scroll on the page and the element arrives at a particular page location it adds a class in HTML, in all other browser that code works.…
-
1
votes1
answer645
viewsPrepare mobile responsive Iframe or embed
Guys I have a project c# MVC5 and my scenario is as follows: I have to open in a friendly url a large series of pages (with media content) made by third parties. One at a time clear (according to…
-
1
votes1
answer439
viewsHow to take the first and last class Parent of a div contained within a TD via CSS/SASS?
I would like to know how to get the first and last Rent of a class set (.date) that is contained in a div within an element . Following is an example of a code tree: <table> <tr>…
-
1
votes1
answer69
viewsManipulating CSS Gradient
I have a gradient to make, with a 5-color split and in the range of each, it has to be exactly divided. Follow image of what I need to do: What I managed to do with CSS: .area{ width: 100%; padding:…
-
1
votes1
answer170
viewsHTML/CSS - Menus with sub-menus overlap
Hello, I have an application in Delphi that generates an HTML code from some register that the user does. I mount a tree of menus and sub-menus in an HTML, however, when there are many menus in the…
-
1
votes1
answer173
viewsChange default validation message
I have a login form, where if the user does not fill in the fields, he will be notified. The default message is Fill in this field. I switched to Fill in the email or Fill in the password, depending…
-
1
votes0
answers472
viewsHow to update php correctly
Hello I am making an administrative panel where the administrator can edit the Name, User and email but it does not perform the UPDATE in the database but in the message it says that the update…
-
1
votes1
answer677
viewsHTML - THYMELEAF - pass parameter
I created a parameter in Procedurecallerrepository and Procedurecallerrepositoryimpl So far everything ok my error is in html and I don’t know where I’m going wrong (I’m sorry if it’s something…
-
1
votes1
answer86
viewsCapture rel of each clicked link and add to the value of an Hidden input
I have the following structure, I need to create something "similar" to a shopping cart. When creating a link I need to take the rel of this link and go adding the value of the Hidden input,but I do…
-
1
votes2
answers1166
viewsHow to make an HTML form responsive
I have an HTML and CSS form that is perfect on my site, but when I try to open it on a mobile device (mobile or tablet) it is totally distorted. I am using Bootstrap as a CSS framework. My code:…
-
1
votes2
answers506
viewsJS - How to get the Element selector or or its tree?
Hello, I’m trying to make a function that by clicking on an element I can either catch the tree(all parents) of the element (up to the body or a specific tag), or take something similar to the "Copy…
-
1
votes3
answers163
viewsHow to draw a ribbon(gift loop or label) on a div?
How do I draw this green (Ribbon) loop in the top right corner of the center div? I couldn’t find a way to do it, could someone help me with that? After the answer I can edit the question to make it…
-
1
votes1
answer374
viewsEffect on input type="date"
Good night, you guys! I’m having a little trouble getting an effect on input type="date". I can do it normally in the input type="text" (first print shows without the effect and the second shows…
-
1
votes1
answer54
viewsDo not "terminate" the effect when you have something in the input
Good afternoon, you guys! I have the following problem: my input does an effect when it is selected (as shown in the first print) and ends the effect when it takes the focus from it (as shown in the…
-
1
votes1
answer191
viewsHow to align texts within an html table
I am trying to make the Brazilian table to exercise the concept of tables I learned. But when I put the data on victories and defeats they all get disorganized. table#brasileirao{ border: 1px solid…
-
1
votes1
answer35
views$_FILE not defined
I have a problem with the $_FILE global variable. It’s my first time using it, and soon I come across this problem. I set the enctype, all right, but it shows that the variable does not exist...…
-
1
votes1
answer61
views -
1
votes1
answer792
viewsBanner animated with HTML5
Good afternoon Folks, I received a request to create an animated banner in HTML5. I created the banner using HTML and CSS, and it worked correctly. The client was trying to implement on his site,…
-
1
votes1
answer122
viewsDifficulties with responsiveness for complex layout
Good afternoon, all good? I have a doubt, if it takes a lot of work, do not even need to do, just give me a light, because I believe I’m not making this layout the best way to be responsive and I’m…
-
1
votes0
answers288
viewsJavascript - Remove the event by clicking a button
Good staff, I have the following problem: as the following image shows, I have a set of buttons to move forward and backward the process sequence. However, exactly in this part, I need you to click…
-
1
votes0
answers33
viewsDownload data from a paginated <table>
I have this script that downloads data from an entire table in the format. xls, it turns out that I do an entire listing on one page and it is not usual because it has listing that goes beyond 2000…
-
1
votes1
answer103
viewsDiv fixed when it reaches the top
Well I do not know even ask and name as is the name of this feature, something similar to the site of Airbnb when the right side card reaches the top of the page it stays fixed moving only the…
-
1
votes2
answers63
viewsHTML view of the field
I have an input field where I bring the value of the bank, which I use this way: <input asp-for="TICMS" name="TICMS" onKeyPress="return(MascaraMoeda(this,'.',',',event))" class="form-control"…
-
1
votes2
answers81
viewsSelect multiple
I’m having a problem getting the results of a select multiple, because it does not come with the whole name when it comes to a compound name example. <form action="/action_page.php">…
-
1
votes1
answer42
viewsLogin without selecting level
I am making a PHP site for my TCC, and one of the guidelines given was to remove the level selection, and that this was done automatically by the system. My teacher said it was just to remove the…
-
1
votes1
answer277
viewsAssign NAV command on buttons - Owl.Carousel
I would like to understand how I pull the NAV command from Owl.Carousel for my buttons already stylized in a separate div. Example: Sample code: $(document).ready(function(){…
-
1
votes1
answer406
viewsHTML CSS - Organize images(figure) with captions(figcaption) on the page?
I’m having trouble putting the caption inside my image, I want the caption to be at the bottom of the image (inside it), another thing is that my Section.gallery is not inside my div#interface and I…
-
1
votes1
answer103
viewsHow to create the mechanics and appearance of the zoom effect used in the Reveal.js framework?
Example: Zoom of the Reveal Goal: Study the mechanics and appearance of Zoom with the best algorithmic solutions. - Of the problem of appearance: 1 - When inspecting the tag < Section >…
-
1
votes2
answers542
viewshow to remove rows from a table?
I’m creating a table, but on the site always appear the lines that separate the columns and rows. Can someone tell me how I could do to get them out? The code I have is this: <table>…
-
1
votes0
answers238
viewsTaking information from an HTML page in C# (Webbrowser)
I’m trying to get information from a website and I’m having a hard time getting the right result. Basically, I need to get the software version on the site:…
-
1
votes2
answers48
viewsMy function is not running on page loading
I’m having the following problem. I have the following function function sortTable() { arr = JSON.parse(localStorage.context_data); $('#tableLemos th').click(function () { console.log("funcao…
-
1
votes1
answer445
viewsJquery to upload page after click button
Good morning friends, I’ve been searching for days for a "page up" function, when the user clicks a button. Only find options "add Back to Top button", but I do not want to add a button, I want the…
-
1
votes1
answer620
viewsHow to place the scroll bar on the table
I have a table with a bar (overflow-x) to roll sideways. The bar is under the table, but I’d like it to be on top. I’ve taken it off the div, put it back, tried to put the print on the bar before…
-
1
votes1
answer145
viewsError in Count()
I need to put a website on the air (I didn’t make the site), and I need to adjust some things on it. I am facing a problem in a dynamic menu: when I am on the home page it gets ok, but if I browse…
-
1
votes1
answer71
viewsI’m trying to install the Isotope on my website
I’m installing the Isotope, but for some reason make it work <div class="container-fluid "> <div class="row pt-5"> <div class="col-md-8 menu-prod mx-auto" id="filter-buttons" >…
htmlasked 6 years, 8 months ago Caroline Santos 13 -
1
votes1
answer53
viewsTextarea Characters break line when submitting to database
I have a form with a field SELECT and by submitting the text in the database, it breaks the line, even copied and pasted directly from the table record in the notepad and is even broken, in the HTML…