Want to get informations about bets Django hosting plateform

2020-09-20 Thread wesley...@gmail.com
Hi guys 

Please I want some person to help me about choosing hosting plateform for 
my Django project, a plateforme that offers an extensible offer without 
problem for migration through version of thé ptoject. 

Hope you will help me 🙏

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8c6c458d-00b8-4ed3-b49c-2a119d11c86en%40googlegroups.com.


[jQuery] Re: Jquery Autocomplete Problem

2009-03-25 Thread wesley...@gmail.com

Hi,
i have a question,
how to manually fire the autocomplete event?


aa,
bb,
cc,
dd ...

$(document).ready(function(){
$("#acTxt").autocomplete(theUrl, {
minChars: 2,
matchContains: true,
max: 20
});

$(".pTxt").click(function() {
$("#acTxt").val($(this).html()? $(this).html():'');
});
});


if the user click on SPAN with class 'pTxt', the innerHTML of the SPAN
will place in the textbox,
how to activate the autocomplete without pressing UP, DOWN, PAGE UP,
and ?


[jQuery] How to activate autocomplete in this case

2009-03-25 Thread wesley...@gmail.com

Hi,
i have a question,
how to manually fire the autocomplete event?


aa,
bb,
cc,
dd ...

$(document).ready(function(){
$("#acTxt").autocomplete(theUrl, {
minChars: 2,
matchContains: true,
max: 20
});

$(".pTxt").click(function() {
$("#acTxt").val($(this).html()? $(this).html():'');
});
});


if the user click on SPAN with class 'pTxt', the innerHTML of the SPAN
will place in the textbox,
how to activate the autocomplete without pressing UP, DOWN, PAGE UP,
and ?