Posts by Iago Santana • 84 points
4 posts
-
2
votes1
answer221
viewsA: Is it possible to replace one div with another in html?
I couldn’t quite understand your question. Example in Jquery $('button').on('click', function(){ $('div#home').hide(); $('div#personagens').show(); }); #home { background:black; width:100px; height:…
-
0
votes1
answer29
viewsA: How to make jquery click work with Infinite Scroll?
Use the . on method(); $('div').on('click', function() { //evento });
-
1
votes2
answers73
viewsA: Change of logo with CSS3
Came to mind the use of Animation available in css3 I alternated only 10 colors, but you can already get a base... /* Codigo CSS */ #logo { width:100px; height:100px; background:red;…
-
3
votes3
answers16275
viewsA: How to send a data to another PHP page by URL?
Sending by URL: Teste.php? tmpString=teste Taking data from the URL: $tmpString = $_GET['tmpString']; You can still use a page access if. if($tmpString == teste { // Código } else { echo 'Error'; }…