HTML の textarea フォームで、カーソル位置にダイアログで設定したテキストを挿入する方法を紹介します。 <前提> jQuery を使います。 <head>~</head>に、以下を追加します <script type="text/javascript" src="http://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("jquery", "1.4.2"); google.load("jqueryui", "1.8.5"); </script> <script type="text/javascript"> var caret_pos; function insertTextAtPosision(obj, pos, txt) { obj.focus(); if (jQu