noob question: get(0) doesn't work ??

noob question: get(0) doesn't work ??

I'm writing a plugin, and I simply can't get get(0) to return the first object, even though the object array is not empty .. what the hell am I doing wrong?

Take a look at this code:

  1. jQuery.fn.myPlugin = function(options) {
  2.     //alert ("inside plugin");

  3.     this.each(function() {
  4.        var testit = jQuery(this).parent(); //OK

  5.        // OK:
  6.       var testA = jQuery(testit).children("someclass");
  7.       // returns 2 elements in my case     
  8.       console.log(testA); // OK

  9.       // Doesn't work:
  10.       var testB = jQuery(testit).children("someclass").get(0);
  11.       // testB is UNDEFINED?? why - should return the first element?

  12.         console.log(testB); // undefined??
  13.       }
  14.       );
  15. };

Hope somebody can shed some light on this ..

Best regards,
Anders