Posts by lufizi • 207 points
4 posts
-
0
votes1
answer29
viewsQ: Contents of <p> coming from the bank exceeds the limit of the div
I made a site in PHP where most content comes from the database. On one of the pages, the content is exceeding the limits of the div and overlapping other content. I’ve looked at the CSS and the…
-
5
votes1
answer846
viewsQ: Subtract input date with current date
I am trying to subtract a date that the user type in the input with the current date. var data1 = $("#data_viagem").val(); var data1 = data1.split("/"); var viagem = new Date(data1[2], data1[1],…
-
1
votes2
answers1042
viewsQ: Breaking line array jQuery
I am collecting the values selected by the user and playing in an array. After that, I created a loop to play these values in a string to print on the screen. The problem is that they’re all coming…
-
3
votes2
answers1678
viewsQ: How to change the select text after an option is chosen?
I am making an application in which the user must select his ddi. The ddi are in a select thus: <select name="paises" id="ddi"> <option value="55" id="bra">Brasil</option>…