01.
<
script
src
=
"//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"
></
script
>
02.
<
script
src
=
"http://winofsql.jp/if_skeleton/basic_13_tabindent/tabIndent/js/tabIndent.min.js"
></
script
>
03.
<
textarea
id
=
"text"
name
=
"text"
style
=
"width:600px;height:200px;background-color:khaki;"
>
04.
// タブ
05.
$( "#mytabs" ).tabs({
06.
show: { effect: "slide" },
07.
hide: { effect: "slide",direction: "right" }
08.
})
09.
.css({ margin: "30px 300px 0 30px" });
10.
</
textarea
>
11.
<
script
>
12.
$.tabIndent.render("#text");
13.
</
script
>