        $(document).ready(function(){   
           
            $('#qref').click(function(){   
                $.ajax({   
                    url: "http://www.javelines.ru/wp-content/themes/javelines_soft/js/quoter.php",   
                    cache: false,   
                    success: function(html){   
                        $("#quot").html(html);   
                    }   
                });   
            });   
        }); 