Set the cssFloat property:
Object.style.cssFloat="left|right|none|inherit"
Return the cssFloat property:
Object.style.cssFloat
and the below is to select elements based on their style:
$('*').filter(function() {
return $(this).css('float') == 'left';
});
Hope this helps.