This mini-website is underconstruction. New pages should be availables soon.



This one is just my first try to do a plugin with Jquery, if you think that one could be better, just feel free to send me you feedback.
shaanproductions@hotmail.com




[Pc version] - Ie (6.0/7.0/8.0b).
[Pc version] - FireFox (2.0/3.0).
[Pc version] - Safari (3.1.2).
[Pc version] - Opera (9.0).



Download Autocomplete (beta)



- check before x chars.
- magnifier Image before input.
- reset button, with configurable ALT.
- correct bug in Smode.
- correct bug with LI:Hover for Ie 6.0 [ jQuery.autocompleteFixIe60(); ]
- now work with Opera 9.0.
- put magnifier image on right or left.



Theses examples are from the incoming version.

Type your county :
[autocomplete with more than 1 caracters, mode like '$search%']

// Ex autocomplete with crypt page (populate1.php)

$("#inputString").autocomplete
(
{
sFile:"sLfaszkxuyekkIa1sAAA",
pImage:"common_gfx/loader.gif",
pImageTxt:"Wait please",
dValue:"Be" ,
aChar:"1",
iMagnifier:"common_gfx/magnifier_left.gif",
iMagnifierPosition:"left",
bReset:"common_gfx/reset.gif",
bResetTxt:"Reset this field"
}
);
 
Type your city :
[autocomplete with more than 3 caracters, mode like '%$search%']





Try : "fra"
// Ex autocomplete with crypt page (populate2.php)

$("#inputString2").autocomplete
(
{
sFile:"sLfaszkxuyekpRa1sAAA",
pImage:"common_gfx/loader2.gif" ,
sMode:"multi",
aChar:"3",
iMagnifier:"common_gfx/magnifier_right.gif",
iMagnifierPosition:"right",
}
);
 
Type your city ( return also associed zip ) :

// Ex autocomplete with crypt page (populate3.php)

$("#inputString3").autocomplete
(
{
sFile:"sLfaszkxuyekkRa1sAAA",
pImage:"common_gfx/loader2.gif" ,
vDest:"inputZip",
aChar:"2"
}
);
 
Type your county 2 :

 




Try : Belgium or France.
// Ex autocomplete with crypt page (populate4.php)

$("#inputString4").autocomplete
(
{
sFile:"",
nFile:"populate4.php",
pImage:"common_gfx/loader2.gif" ,
pImageTxt:"Wait please",
dValue:"Be",
vDest:"inputFlag",
aChar:"1"
}
);
 
Type your email :  
 
firstName :  
lastName :  
id :  

Try : Billgates@microsoft.com
// Ex autocomplete with crypt page (populate5.php)

$("#inputString5").autocomplete
(
{
sFile:"",
nFile:"populate5.php",
pImage:"common_gfx/loader2.gif" ,
pImageTxt:"Wait please",
dValue:"",
vDest:"{inputFirstname,inputLastname,inputId}",
aChar:"1"
}
);

$("#inputFirstname").attr("value","");
$("#inputLastname").attr("value","");
$("#inputId").attr("value","");