.position only runs on Firefox

.position only runs on Firefox

Hi.
I am working with Drupal 7.36 and Jquery 1.10.

The script:

  1. (function ($) {
  2.   Drupal.behaviors.moveFlexsliderAtTheRightPlace= {
  3.     attach: function (context, settings) {
  4.       $( ".flexslider" ).position({
  5.           my: "right bottom",
  6.           at: "right bottom",
  7.           of: ".region-main-upper"
  8.       });
  9.       $( "#block-superfish-1" ).position({
  10.           my: "left bottom",
  11.           at: "left bottom",
  12.           of: ".region-main-upper"
  13.       });
  14.       $( ".view-logo" ).position({
  15.           my: "left center",
  16.           at: "left center-100",
  17.           of: ".region-main-upper"
  18.       });
  19.     }
  20.   };
})(jQuery);

In Firefox every div appears at the right place. Unfortunately it didn't work in Chrome and Safari.