after page load first $.get() is executed twice

after page load first $.get() is executed twice


Hi all,
Recently I started using jQuery for real and I am now
running in a problem where after the page load the $.get()
is executed twice.
I have this javascript function
function request_ninja(A, B, C) {
$.get('request.php', { 'A': A, 'B' : B, 'C' : C},
function(result) {
alert(result);
return false;
});
return false;
}
That is called from an 'onclick' from a "<input type="button"
onclick="request_ninja(1,2,3)" ...
The first time after a page is loaded it is executed twice and after
that just once
(as expected also the first time).
Would this be a bug?
regards,
Harrie