following code waits till dom ready
jQuery(document).ready(function(){
what do i have to write to simple let the execution of the jquery fu
You can use
$(window).load(function(){});
instead of
$(document).ready(function(){});
I took reference from jquery forum