We’re pleased to announce the release of RankDirectory.org in co-operation with GadElKareem.com . Read the rest of this entry »
RankDirectory.org release
March 28th, 2010solution for imageareaselect jquery plugin problem with IE
October 7th, 2009Ref. to this tutorial :
http://www.webmotionuk.co.uk/jquery-image-upload-and-crop-for-php/
For people who has problem with IE, the problem that first click on IE get selection.width & selection.height = 0. therefore when the scaleX and scaleY divided by 0, it return Infinity. So here’s a simple Solution :
Just replace :
var scaleX = 100 / selection.width; var scaleY = 100 / selection.height;
With :
if(selection.width != 0 && selection.height != 0) {
var scaleX = 100 / selection.width;
var scaleY = 100 / selection.height;
} else {
var scaleX = 100;
var scaleY = 100;
}
Hdeya & Tarabot Partnership.
May 17th, 2009Hdeya and Tarabot for IT & Consultancy announced a cooperation agreement in the IT consultancy sector to provide Tarabot by web development and web applications services. Read the rest of this entry »
Help kill Internet Explorer 6
May 7th, 2009IE6 is like an illness that just won’t go away, but we have the medicine.
IE6 Update looks like IE’s Information Bar, but instead of offering your visitors an ActiveX plugin, it offers a browser update.
For more info :
http://ie6update.com/
Sorting items on the fly (AJAX) using jQuery UI Sortable, PHP & MySQL.
May 3rd, 2009While we were working on http://www.duettographics.com Administration control panel, they required the ability to sort their images in easy way, so after some googeling we find many separate tutorials for this. So, we decided to write one simple tutorial that can describe the whole thing.
In this tutorial, we’ll work on sorting menu items.
Requirements : sortable jQuery UI, PHP & MySQL server support. Read the rest of this entry »