Hi Could anyone tell me the best way that I could convert the jquery code below to use a drop down item in a combo box instead of the link shown here. to open the css file 'business.css' and display in a text area thanks rifki
a href="css/business.css" class="link">business style
<script>
$(function(){
$('.link').click(function(){
$.get(this.href,null,function(css){
$('#css').css(css);
return false;
});
});
});
</script>