私はこのページhttp://nelsonpatojimenez.com/startupchile.org/joinastartup/を持っていますが、「その一部になる」をクリックしようとすると、slideDown 関数へのコールバックが発生します。
このコードは、スタートアップをクリックしたときにジョブを非表示および表示します
$('section.listjobs').on('click', '.jobgroup', function(e){
var classes = $(this).attr('class');
var id = $(this).attr('id');
if ($(this).children(':last').hasClass('hidedescription')) {
$(this).children().slideDown('slow').fadeIn('slow').removeClass('hidedescription');
$(this).css('border-bottom','0px');
}else{
var div = $(this).children(':last');
var divdiv = div.children(':last');
var divdivdiv = divdiv.children(':last');
$(this).children(':last').slideUp('slow').addClass('hidedescription');
$(this).css('border-bottom','1px dashed #0071A0');
};
e.preventDefault();
});
「be part of it」をクリックすると、次のページに移動する必要があります。
何か案が?