In this post we will learn how to make simple and clean frequently asked questions section using jQuery. Please add this jQuery anywhere before closing tag on your web page. jQuery: (function($) { var allFaqs = $(‘.piefaqs > dd’).hide(); $(‘.piefaqs > dt > a’).click(function() { $(this).parent().next().toggle(); return false; }); })(jQuery); HTML: Nice Question 1 Sed […]
Archives for January 2015
Unicode Characters Issues
I recently encountered a weird issue when my webservice stopped working after moving to a new Server, Everything was configured properly and I scratch my head around but no helps, google the issue but no success, finally my debugging ended up figure out the issue it was Default Files Encoding that was not set to […]