Guide: jQuery Mobile – Content disappear after first call / Pageinit fires multiple times

Quick note, if you’re experiencing any of the following: 1. Pageinit is fired multiple times 2. Inability to manipulate the page components i.e. update .text or .html 3. Page content are not showing after the first call of the page The root of this is that your HTML might not be well-structured or not XHTML valid. Fix … Continue reading Guide: jQuery Mobile – Content disappear after first call / Pageinit fires multiple times

Guide: Show loading message while moving between pages in jQueryMobile – Part 2

In part 1 , I discussed how to show loading message while moving between pages. The suggested approach works both for Single Page  Template and Multi Page template like a breeze. If you’re not expert in jQueryMobile, I recommend you go with it. However, if you’re obsessed with clean optimized code, like myself. I assume … Continue reading Guide: Show loading message while moving between pages in jQueryMobile – Part 2

Guide: Show loading while change pages in jQueryMobile

I was looking for a why to show “Loading Please Wait” between pages transition in jQueryMobile for a while. Unfortunately, I was not able to find a good guide for this. All available resources are general and do not handle issues like, data-rel and Popups. Why I want to do that? because in some cases, … Continue reading Guide: Show loading while change pages in jQueryMobile

GUIDE: Right to Left Languages Support for jQuery Mobile

I am developing a mobile application using jQuery and was looking for a solution for RTL languages support for jQuery Mobile. Unfortunately I found none. I had to do it my self.  Please keep in mind that the file might not be complete, I have gradually updated it so that my application works. You might be … Continue reading GUIDE: Right to Left Languages Support for jQuery Mobile

GUIDE: ezAuth with codeIgniter 2.1.0

ezAuth  is a very handy library for user authentication/authorization. However it has not been updated lately to be compatible with the latest changes in CodeIgniter 2.1.0 I assume that you’ve successfully added it to your CodeIgniter project. For me all I did is that I copied ezauth_model.php to the models folder  and loaded the model … Continue reading GUIDE: ezAuth with codeIgniter 2.1.0

GUIDE: Facebook Login with CodeIgniter

I’ve tried to add Facebook Login button to my CodeIgniter application. Since I’m new to both CodeIgniter and Facebook Connect, at least from development aspect, I have looked for existing tutorials.  After research I found that Danny  Herrarn tutorial is the best one. However, I faced a couple of  issues, to which, I found no … Continue reading GUIDE: Facebook Login with CodeIgniter

GUIDE: Your first Android application using Phone Gap

The video contains a complete guide on how to create your first Android application, starting from installing Android tools on Eclipse till generating the APK that can be directly installed on your Android Machine. In addition to the steps in the official tutorial on Phone Gap site. This video covers the following: How to avoid … Continue reading GUIDE: Your first Android application using Phone Gap

GUIDE: Scrape multi-pages content with Scrapy

Scrapy is really amazing. It is a very handy framework for scraping. In this guide, I will illustrate how to create a spider to extract multi-pages content.  I assume that you already know Scrapy and you’ve covered the official tutorial. I also assume that you’re familiar with XPath, if not please get your self familiar … Continue reading GUIDE: Scrape multi-pages content with Scrapy

GUIDE: Sphinx with Django

The purpose of this tutorial is to integrate Django-Sphinx inside your Django application to make use of the powerful Sphinx search engine. This guide assumes the following: Python already installed Linux Ubuntu operating system Django already installed Eclipse — with Pydev — is the IDE You already have Djnago application to integrate Djnago-Sphinx with The … Continue reading GUIDE: Sphinx with Django