[jQuery] Re: Closing jqModal from inside of content loaded with AJAX

2009-05-25 Thread Surya Prakash
Close me http://www.warden.pl/jq/test1/# ... or Test mehttp://www.warden.pl/jq/test1/#... or You need to specify below code in examples/2.html: http://www.warden.pl/jq/test1/#a href=# onclick=parent.closeWindow();Close me/a in parent window $(document).ready(function(){

[jQuery] Re: jQuery functions called from setTimeout fails

2009-05-25 Thread Surya Prakash
Hi U can try as below: var a; var b; varc c; setTimeout(movebus(+a+,+ b+,+ c+),300); i hope this is help ful.. let me know this works for u r not,,, On Sun, May 24, 2009 at 4:05 PM, Mike mike.wise...@flinders.edu.au wrote: I have a jQuery function with three parameters which works just

[jQuery] Re: Closing jqModal from inside of content loaded with AJAX

2009-05-15 Thread Surya Prakash
Hi Dude, below is the solution for it: lets say ajax load page contains a href='#' onclick='parent.CloseAjaxPage();'Close Ajax/a And on parent page implement this code: CloseAjaxPage = function(){ $(#modalClose).click(); } I hope this is clear Please let me