/* * ready - function() */ if ( $("#txtKeyword").length > 0 ) { $("#txtKeyword").keyup(function(event) { if (event.keyCode === 13) { Search('searchAct'); return; } }); } /* * Share FB */ function shareCourseFB(idCourse){ FB.ui({ display: 'popup', method: 'share', href: 'https://beta.mentorlinks.net/search/detail.php?p=coursedetail&id='+ idCourse +'&t=' + new Date().getTime(), }, function(response){}); } function shareActivityFB(idActivity){ FB.ui({ display: 'popup', method: 'share', href: 'https://beta.mentorlinks.net/search/detail.php?p=activitydetail&id='+ idActivity +'&t=' + new Date().getTime(), }, function(response){}); } /* * Open Link */ function openLink(url) { // kiem tra safari trên iphone và ipad var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); if (isSafari) { window.location.assign(url); } else { location.href = url; } };