jquery not working correctly in plugin options page?

If your script is loading in the head of your admin page I would recommend wrapping your code in a document ready function

// wait till the entire dom is available before executing JS
// notice the $ this brings the $ into private scope if you wish to use it
jQuery(document).ready(function($){ 

    // put your page code here
    $(".simple").hide();

});