좀전 포스트에 소개한 javascriptLoading 함수를 만든 친구의 작품중.. 하나더 소개 할만한게 있어서... 가끔 script 단에서 location.href 의 파라미터 값을 map 구조로 받고자 하는 욕망이 있을때 요긴 하겠군요. 출처 : http://en.design-noir.de/webdev/JS/loadScript/ // converts an URI-like query string to an object containing the parameters as properties. function parseURILikeStr (s) { var rv = {}, decode = window.decodeURIComponent || window.unescape; (s == null ? locatio..