메인화면 메뉴에 있는 target="_blank" 없애고 싶습니다.

메인화면 메뉴에 있는 target="_blank" 없애고 싶습니다.

QA

메인화면 메뉴에 있는 target="_blank" 없애고 싶습니다.

답변 4

본문

85036a0e4a5a97a1197a285425e6c08a_1479777429_3435.png
저것때문에 새창에서 페이지가 뜹니다. 수정을 하고싶은데 못찾겠네요. 홈페이지 메인화면 메뉴입니다.

이 질문에 댓글 쓰기 :

답변 4

<script type="text/javascript">
    $(document).ready(function()
    {
        $("#lista1").als({
            visible_items: 6,
            scrolling_items: 2,
            orientation: "horizontal",
            circular: "yes",
            autoscroll: "yes",
            interval: 2000,
            speed: 500,
            easing: "linear",
            direction: "left",
            start_from: 0
        });
        
        
        
        //logo hover
        $("#logo_img").hover(function()
        {
            $(this).attr("src","images/als_logo_hover212x110.png");
        },function()
        {
            $(this).attr("src","images/als_logo212x110.png");
        });
        
        //logo click
        $("#logo_img").click(function()
        {
            location.href = "http://als.musings.it/index.php";
        });
        
        $("a[href^='http://']").attr("target","_blank");
        $("a[href^='http://als']").attr("target","_self");
    });
</script>

 

저 부분 주석으로 막으세요.

어느 파일에 있는지는 파악이 불가능하네요.

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 29
© SIRSOFT
현재 페이지 제일 처음으로