Posts by Tiago Pereira Cardoso • 46 points
5 posts
-
1
votes1
answer775
viewsA: Catch event click inside iframe with jQuery
To see the contents of this iframe do this: var frame = window.frames[0]. Document; The . frames[0] -> 0 represents the only iframe on the screen, if there is another need to put which iframe…
-
0
votes1
answer166
viewsA: Javascript - Use button to show more images
all good. So this way it’s not very good for you to run no. The best way is to use offset. The offset you delimit an amount to be displayed per page, example 10 to each page and your query will…
-
0
votes2
answers167
viewsA: Take mysql field dynamically
you will perform a loop and within this loop will bring the result in your echo. Example: while($rs = $lista->fetchAll(PDO::FETCH_ASSOC)){ $var1 = $rs['campo_da_tabela']; ... }…
-
1
votes1
answer245
viewsA: Field <input> superimposing calendar field
In class .ui-datapicker place: .ui-datapicker { z-index 9999 !important; } That will solve your problem.
phpanswered Tiago Pereira Cardoso 46 -
1
votes2
answers144
viewsA: Improving Paging Scheme - PHP and Javascript
You will need to create 2 new variareis and make the following calculations. 1st Variable: Página * Quantidade_de_Página 2nd Variable: (Página * Quantidade_de_Página) - Quantidade_de_Página + 1;…