Posts by Carlos Henrique • 141 points
6 posts
-
0
votes2
answers202
viewsQ: Disable click while Hide/show effect ends with jQuery
I have a menu with 3 buttons. Each button shows the respective DIV and hides the rest, with hide/show, for example. How do I prevent the button from being clicked again before the effect hide/show…
jqueryasked Carlos Henrique 141 -
7
votes4
answers4863
viewsQ: How to pick the first word of a string with jquery?
Ex.: "First word of string" I want to take the word "first"
-
3
votes2
answers162
viewsQ: Catch interspersed CSS classes using jQuery
I need to know how to get CSS classes interspersed. Because I’m going to loop and I need to get the classes in a certain number. The code is as follows:: <div class="box"></div> <div…
-
0
votes1
answer411
viewsQ: Make price calculation with jQuery inside PHP loop
I’m doing a shopping simulation page. I already have the product loop in PHP, now I need to calculate each product by quantity. Here the HMTL: <td width="140"><?= $produto_nome;…
-
1
votes1
answer365
viewsQ: session_id PHP and mysql
I’m doing a shopping cart simulation with PHP and Mysql. I need to store a session_id or any user session identification, for when it leaves I remove the data that it stored in the database. I…
-
1
votes2
answers458
viewsQ: Require input text filling with jQuery Validator
I am making a registration form, and I have three fields to enter values. I want to make it mandatory to fill in at least one of the three input text. Does anyone know how to do this with jQuery…