Posts by WMomesso • 2,489 points
115 posts
-
1
votes2
answers1368
viewsQ: How to pass the dynamic id of a Div to a javascript function?
I am making a dynamic table in html and need to present the subtable only when clicking on the tr of the main table, follow the example. $(function () { $('#toggle3').click(function () {…
-
0
votes2
answers294
viewsQ: How to configure jquery.maskedinput to accept valid dates only?
How do I make for the <input type="text" name="calendar" id="calendar"> accept only correct dates, example of a correct date 01/02/2017 but it is accepting when type 01/20/2017, ie the month…
-
1
votes1
answer390
viewsQ: How to Add Mask in ajax input via jquery?
Hello guys I have a function that edits the table dynamically, but the data contained in it has formatting coming from the database, but when I double click it does not remain with the mask. the…
-
3
votes1
answer1067
viewsA: Editable table with jquery and php?
I managed to solve with the help of SOUS @Ionut and decided to share in case someone needs in the future, there was an extra closure and a comma was missing before Success, I hope to have helped…
-
3
votes1
answer1067
viewsQ: Editable table with jquery and php?
I’m trying to make a dynamic table for editing the data without refresh, but when double-clicking on the line nothing happens, follow the code Jquery $(document).ready(function(){ $('#tblEditavel…
-
0
votes1
answer307
views -
2
votes2
answers1639
viewsQ: Split values in Brazilian currency (R$) in php?
I need to divide the value 6999,99 by 3, but when dividing it returns 2333,00 ie does not return the cents, follows a hypothetical example: $parcelas = 3; $valor = double(6.999,99); //já usei com e…
-
4
votes1
answer544
viewsQ: Export array within a table?
I need to export data from an array inside an html table, the function is working but I don’t know how to export while inside a table, I made an analogy with the code below. function…
-
4
votes3
answers137
viewsQ: Function to double salaries in n installments?
I’m having trouble creating a function to duplicate pay, my scenario is this, I want to move to function 3 variables, being the valueTotal, qtyParcelas and firstVencing and if there is more than one…
-
0
votes2
answers597
viewsQ: Insert buttons to share posts in Wordpress
I need to insert buttons in the footers of the posts so that it is shared by social networks and Whatsapp, I have installed several plugins but not met my need, or there is a way to use the links…
-
0
votes1
answer52
viewsQ: accents between php and mysql how to use?
what is the correct way to create the database and tables in mysql 5.6 to meet Brazilian standards of characters? my php version is 5.6 and I use the following information in the php file header…
-
3
votes2
answers396
viewsQ: Recycle Bin, Draft and Pending Revision in wordpress, how do they work?
Good afternoon, I would like some help from you, I need to take a post off the air, but I would like to reactivate it regardless of the time of passing, if in a year I want to publish it again as I…
-
0
votes2
answers308
viewsA: String concatenation in a directory
Juliano I’m analyzing your code and agree mention of William Novak, another thing bars before quotes work as escape in php, see the examples: <?php \\quando quer ter o resultado meu nome é…
-
1
votes4
answers19928
viewsA: strtoupper() with accents
In addition to having to deal with function accentuation strtoupper I also had to make a cast with the data coming from the bank, the code was like this.…
-
1
votes0
answers1168
viewsQ: How to refresh the table without updating the whole page?
I am developing a system in PHP, and put some buttons to activate and delete the line but the same only returns the result if I refresh the whole page, wanted something more dynamic in the table.…