jQuery div Hide and show <style> #smarttipsdiv { width: 90%; margin:auto; height:200px; background-color: #008000; } a { font-size: 100%; font-weight: normal; } </style> <script> $(document).ready(function(){ $(‘#toggle’).click(function(e){ e.preventDefault(); var isvisible = $(‘#smarttipsdiv’).is(‘:visible’); if(isvisible) { $(‘#smarttipsdiv’).slideUp(); } else { $(‘#smarttipsdiv’).slideDown(); } }); }); </script> <a id=’toggle’ href=”#”>Heading</a> <div id=”smarttipsdiv”></div>
Author: smarttips
Change skype file download location
Change Skype tool file download location. Skype is a useful tool for communication.Through Skype can send and receive files For changing download location of file Tools *-> Options *->Save files to *-> click on button to change the location
PHP foreach loop key value
PHP foreach loop key value foreach($data as $key => $value): echo $key; echo $value; endforeach; Example: <?php foreach($this->universities as $key => $value): if($key == $group->group_id): echo $value; endif; endforeach; ?>
php zend framework email validation
zend framework email validation $value=array(‘smarttips@smarttips.in,test@gmail.com’); // Validate emails $validate = new Zend_Validate_EmailAddress(); $emails = array_unique(array_filter(array_map(‘trim’, preg_split(“/[s,]+/”, $value)))); if( empty($emails) ) { return false; } foreach( $emails as $email ) { if( !$validate->isValid($email) ) { return false; } }
what is RSVP ?
RSVP is the full form for the french phrase- `respondez s’il vous plait` literal meaning of RSVP – `you respond, if it you please`