$(function() { var open = $("[id^=open]"), content = $( "[id^=content]" ); open.each(function(i) { var el = content.eq(i); $(this).click(function() { el.fadeIn() }) }) });