/ Published in: jQuery
You can run this in firebug to get yourself an up to date select with all the Industries listed on this page.
http://developer.linkedin.com/documents/industry-codes
http://developer.linkedin.com/documents/industry-codes
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
select = jQuery('<select />').attr('id', 'myselect'); jQuery('body').append(select); jQuery('.info tbody tr').each(function(index){ option = jQuery('<option />') .attr('value', jQuery(this).find('td:first').html()) .html(jQuery(this).find('td:last').html()); select.append(option); });