Posts by Lucas Fonseca • 147 points
17 posts
-
1
votes2
answers144
viewsA: Problem with Carousel HTML AND CSS
I found the solution with JAVASCRIPT, I will post here. I do not know if it is the most correct way, but it was the fastest and it worked. $(document).ready(function(){ $('#s1').click(function (){…
-
2
votes2
answers144
viewsQ: Problem with Carousel HTML AND CSS
When I click on the link that directs me to the respective slide, it’s kind of anchoring and sliding the page down a little bit, how do I get it to slide without html understanding that as a link…
-
0
votes1
answer44
viewsQ: Jquery Slide Image Transition Error
I’m setting up a website and the image slide is not working.. the image is static. What might be? <!doctype html> <html lang="pt-br"> <head> <meta charset="utf-8"> <meta…
-
0
votes3
answers2595
viewsQ: Disable a select option by clicking a button
How do I so that when I click the button I disable the option selected so that it cannot be chosen again? <select name="produtos"> <option value="1">Arroz</option> <option…
-
0
votes1
answer207
viewsQ: Store user ip when entering the site
I want to display a welcome video on my site only when it is the first time the user enters my site, I thought to use the following code: $ip = $_SERVER['REMOTE_ADDR']; It returns me the user’s ip…
-
0
votes1
answer1304
viewsQ: How to do Onclick action in Select Option
I need to do an onclick action on each option of a select with a different link according to the id of each, but it’s not working. $label .= "<select size=\"1\" name=\"modulo\"…
-
0
votes0
answers71
viewsQ: Mobile keyboard does not open on bootstrap site
I made a responsive site with bootstrap, but when clicking on inputs the mobile keyboard is not triggered. What can be? <script…
-
1
votes3
answers73
viewsQ: Do you have any "parse" commands for jquery?
I get a string like : R$10,00, I wanted to change it to 10.00 to be able to calculate, I tried the code below, but it didn’t work. for (let i=0; i<numColunas; i++){ valor =…
-
1
votes1
answer492
viewsQ: Add a column by Jquery
I have a table that adds according to the user, that is he can insert or delete the table row at any time, and I wanted a code that adds up a certain column (in case it adds all the values of the…
-
0
votes1
answer1669
viewsQ: PHP code inside Jquery, is it possible?
I have an application and in it I use Jquery and the function I’m having problems is as follows: When the user clicks on the button + calls Jquery which reads HTML and PHP content and runs in a row…
-
0
votes2
answers79
viewsQ: Why does removing javascript not work?
I made a javascript function to delete table row when the user presses the button, but it is not working. (function($) { RemoveTableRow = function(handler) { var tr = $(handler).closest('tr');…
-
0
votes3
answers43
viewsQ: Decrement of JAVASCRIPT forms
I have a code when the person clicks add the code generates other languages.. but how do I have the option to delete in each form? Note: I do not want to delete the last one added and yes a certain.…
-
1
votes0
answers97
viewsQ: How do I make a PHP friendly url?
I would like to use this to mask the data contained in the url,. something similar to: localhost/webservice/networks.php? parametro=1 by localhost/webservice/networks/consult/ how do I do that?…
-
0
votes2
answers6698
viewsQ: How to enable or disable an input according to a select html javascript option?
I want an input to start disabled and when the person select for example a certain option of select the input is enabled.
-
0
votes0
answers64
viewsQ: Session in PHP resetting?
I’m setting up a system and when the person logs in creates the sessions normally, example: $_Session['logado'] = 'S'; But when I redirect to the main page, the session is simply reset and empty,…
-
0
votes1
answer3414
viewsQ: How to navigate between tabs of a bootstrap panel by href link?
So guys, I have a problem... I want to register and when I process it in php I want it to return in a certain tab of the panel.. how do I do that?…
-
3
votes3
answers1222
viewsQ: Bootstrap grid not working!
I am developing a site and the bootstrap grid is not working... MD and SM are working properly, but when I test the site responsiveness XL does not work.. the images are one below the other instead…