[jQuery] Re: Cross site Ajax requests

2008-06-09 Thread Javier Infante
jsp/ PHP site: http://www.example.com:8080/php/ so you could access any of them from the same domain. http://httpd.apache.org/docs/1.3/mod/mod_proxy.html cheers! -- Javier Infante <[EMAIL PROTECTED]> Irontec

[jQuery] Re: how to access an element without an id via the eventobject in the callback function

2008-01-27 Thread Javier Infante
ng is you are binding the click event to the whole document. Use a selector for all the objects: $(document).ready(function(){ $("*").bind("click",function() { $(this).empty(); return false; }); }); remember to retu

[jQuery] Re: How to access custom div tag

2008-01-27 Thread Javier Infante
http://docs.jquery.com/Selectors cheers! -- Javier Infante Irontec, Internet y Sistemas sobre GNU/LinuX - http://www.irontec.com +34 94.404.81.82

[jQuery] Re: Change Jeditable trigger

2008-01-24 Thread Javier Infante
created an unique id for your a tag): $("#unique_id_a").bind("click",function() { $("#unique_id").trigger("go_edit"); return false; }); Hope it helps! Cheers -- Javier Infante Irontec, Internet y Sistemas sobre GNU/LinuX - http://www.irontec.com +34 94.404.81.82