모바일 결제 때문에 window.open 사용했다가 아이폰(사파리)에서는 작동을 안함
아래 참고하고 해보았는데..사파리에선..안먹힌다..왜 안되지 ㅠㅠ.. 결국 window.open '_self' 사용했다..
----------------------------------------------------------------------------------------------------
출처| http://snowple.tistory.com/357
04 | var settings = 'toolbar=0, status=0, menubar=0, scrollbars=yes, height=600, width=800' ; |
05 | var target = 'popup.html' ; |
06 | popup = window.open( 'about:blank' , 'popup_name' , settings); |
08 | $.load( "url" , function () { |
09 | popup.location = target; |
----------------------------------------------------------------------------------------------------