/** * */ $(document).ready(function() { changeIndexLink(); $(window).resize(function() { changeIndexLink(); }); }); function changeIndexLink() { var width = parseInt($(window).width()); if (width <= 768) { $("#os_ios").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=37&search.boardtype=I"); $("#os_and").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=38&search.boardtype=I"); $("#os_win").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=39&search.boardtype=I"); $("#os_mac").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=40&search.boardtype=I"); $("#os_kiosk").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=42&search.boardtype=I"); $("#type_cafe").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=7&search.boardtype=I"); $("#type_res").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=34&search.boardtype=I"); $("#type_ftr").attr("href", "https://m.cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=33&search.boardtype=I"); } else { $("#os_ios").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=37&search.boardtype=I"); $("#os_and").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=38&search.boardtype=I"); $("#os_win").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=39&search.boardtype=I"); $("#os_mac").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=40&search.boardtype=I"); $("#os_kiosk").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=42&search.boardtype=I"); $("#type_cafe").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=7&search.boardtype=I"); $("#type_res").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=34&search.boardtype=I"); $("#type_ftr").attr("href", "https://cafe.naver.com/ArticleList.nhn?search.clubid=25747625&search.menuid=33&search.boardtype=I"); } }