No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
[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]
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']
[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]
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 …
The End.
R.Manojkumar