Erik is correct that liveQuery will work, but you can also just change
where you bind the click event.
What you want to do is:
function listar(id,tipo,busca){
$('#lista' + tipo + busca).remove();
$('#link' + tipo).after('');
$('#lista' + tipo + busca).load('vars.html'
Perhaps you want the livequery plugin?
http://brandonaaron.net/docs/livequery/
--Erik
On Wed, Oct 22, 2008 at 5:36 PM, gtso86 <[EMAIL PROTECTED]> wrote:
>
> I create a simple test like my problem... because my real problem
> hosted on blocked domain for external visits.
>
> http://www.gabrielta
I create a simple test like my problem... because my real problem
hosted on blocked domain for external visits.
http://www.gabrieltadeu.com/teste/testes.html
this example above have the same problem. i need the function
$('#rapida ul a').click(function () {
var url = $(t
Hi gtso86,
Do you have a URL of the page in question?
It may be that you need to call your $('#rapida ul a')... code after
$.load() is finished loading the content.
You could do this by using the callback argument:
$.load(url, [data], function() {
$('#rapida ul a')...
});
Cheers,
-
4 matches
Mail list logo