You can iterate through saved collection to find out the elements with class myClass.
var $refined = $saved.each(function(){
if($(this).attr('class') == 'myClass')
return $(this);
});
Or you can use filter() jquery function to apply selector.
var $refined = $saved.filter('myClass');