Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~17.9K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for jayhall

[CODE] <script type="text/javascript"> $(function() { $('#toggle3').click(function() { $('.toggle3').toggle('slow'); return false; }); }); </script> [/CODE] remove.toggle('slow'); then use .show() and .hide() methods [CODE]$('.toogle3').show(500); //500 refers half seconds[/CODE]

Member Avatar for Quique_1
0
15K
Member Avatar for feblioz

in html data the variable of submit button is "Submit" in php code [CODE=php]if($_POST["submit"])[/CODE] THE ERROR IS variable name changed this means capital letter changed [U]S[/U]ubmit to [U]s[/U]ubmit and use single quote on $_POST['Submit']

Member Avatar for amindabj
0
455
Member Avatar for vizz

[CODE] <style> .odd{height:5px; background:#960;} .even{height:5px; background:#09C;} </style> <script src="js/jquery-1.7.1.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('div:odd').addClass('odd'); $('div:even').addClass('even'); }) </script> <body> <div></div> <div></div> <div></div> <div></div> <div></div> </body> [/CODE] for more jquery selectors use [url]http://www.w3schools.com/jquery/jquery_ref_selectors.asp[/url]

Member Avatar for AleMonteiro
0
156
Member Avatar for R.Manojkumar

hi friends i use a htaccess file on my linux hoting server to change the "upload_max_filesize" and some other settings. but it shows the internal server error 500. how to change this setting on my server, Plz help me:( htaccess file code. php_value upload_max_filesize 50Mb php_value post_max_size 50Mb php_value max_execution_time …

Member Avatar for karthik_ppts
0
2K

The End.