Sneaky little issue pops up when you move away from iphone. Other iphone users that previously texted you won’t be able to text you the same way once you switch. This is because when you both were using iphones, the messaging system was not the typical SMS, but iphone’s messaging systems, native to it. So when you switch, those people will need to reconfigure your number in their phone’s messaging system to be able to contact you. Dirty little secret, huh?
Jquery Simple Fadeout
A cute little snippet to show a simple green bar upon a successful edit. <?php if(isset($_GET[‘edit’])){ ?> <div id=’notifyy’> Edited Successfully </div> <script type=”text/javascript”> $( ‘#notifyy’ ).show(function(){ $(this).fadeOut(5000); }); </script> <?php } ?> The CSS: #notifyy{width:100%;background:#2f5001;padding:4px 15px;color:#fff;} Always,
