Posts by renatofranca • 46 points
3 posts
-
1
votes2
answers1318
viewsA: Capture value of H1 and set on another H1 with jquery, with click
Follow the script for changing values between two H1: $(document).ready(function() { $('h1').click(function() { var prevH1 = $(this).prev('h1').html(); var nextH1 = $(this).next('h1').html(); var…
jqueryanswered renatofranca 46 -
0
votes1
answer243
viewsA: .htaccess does not allow entering folders
You need to add a condition to . htaccess: <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^dominio1.com.br$ [NC] RewriteRule ^$ app/webroot/ [L] RewriteRule (.*)…
-
2
votes1
answer42
viewsA: Redirect cakephp
The problem with your link is that the controller is clear criteria and the action is english when in fact the clear criteria is the action. Note: Try not to use accents in url’s. Create the link…
cakephpanswered renatofranca 46