Posts by Gabriel • 44 points
4 posts
-
0
votes2
answers224
viewsA: Run css when loading Javascript CSS page
As you are already using jQuery you set the edge so: $('.linha').css('border', '0 none');
-
0
votes1
answer113
viewsA: Redeem querystring value by jquery load
Your code is correct, the problem occurs where javascript runs. As you make an Ajax call and play the content in "#content", the javascript runs on the same page you are, ie "window.location.href"…
-
1
votes1
answer59
viewsA: Php showing only one database value
In your example instead of doing a query for each field you want to show, you should change the query to return all fields and iterate over the returned records: <?php $sql =…
-
1
votes2
answers148
viewsA: Complete fields without user having to give TAB
Instead of using the event Blur you can use another event, such as keyUp. This will cause each typed letter to run the search (just as it is in the script at the end of your code). One way to avoid…