Archive for the ‘ Web ’ Category
Skype Toolbar crashes when a javascript counter string looks like a phone number. Create a string like countdown and when it looks like a phone number Skype Toolbar crashes[ READ MORE ]
In Firefox, if you try to set date for datepicker object like $(‘obj’).datepicker(“setDate”, “01.01.2010″); , your page automatically create a scrollbar; no visible characters (maybe whitespace), only a scrollbar shown. This problem happens if you have the line below on the top of your page; <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Delete this [ READ MORE ]
A web-based personal organizer which is designed and programmed by me is on the way… You can check out the video to have some ideas on it. For security issues, I do not want to give the project’s name and domain. To have the project file, please contact info@farkow.com (available only for companies)[ READ MORE ]
Work on The United Nations Women’s Shelter Project for Turkey just started. Documentation and project plan is in progress[ READ MORE ]
This is small script which is like JQuery’s accordion. Easy, small, do not need to run in $(document).ready() HTML PART <div id="cont1"> <div class="slides"> <h3>title</h3> <div class="content"> ... </div> ... </div> </div> — JS PART $("#cont1 div.content").hide(); $("#cont1 div.content:first").show(); $("#cont1 h3").bind("click", function() { if ( $(this).next().css("display") == 'none' ) { $("#cont1 div.content").hide(); $(this).next().slideDown(250); } }); [ READ MORE ]