Posts

Showing posts from February, 2016

JQuery Calendar : Ummul Qura and Gregorian

Image
Hi Guys, I had a requirement to create a calendar which lets user select ummul qura and gregorian dates for bootstrap theme. So I found this jquery calendar  and modified it to achieve it. I hope you like it. Javascript <script type="text/javascript">             var calendarHijri,         calendarGreg;     var minHijriYear,             minHijriMonth,             minHijriDay,             maxHijriYear,             maxHijriMonth,             maxHijriDay;     /*Update Panel Fix*/     function pageLoad()     {         //Handle Uniform         if (!jQuery().uniform) {             return;         }   ...

Facebook Login in Apache Cordova using Angular JS

Image
Hi Guys, I wanted to integrate facebook login within mobile apps. I found very useful blog from the internet and managed to do that. Hope you like it. http://blog.brunoscopelliti.com/facebook-authentication-in-your-angularjs-web-app/