A few weeks ago we published a collection of jQuery plugins for working with forms. While those plugins can be very useful, there may be times where you would rather learn how to code the solution yourself rather than simply using a plugin. T... 続きを読む
こんばんは、最近ホルモン焼きにハマっているishidaです。 WEBサイト制作時、formは必ずといってもいいぐらい存在します。 お問い合わせフォームや会員登録フォームなどがすぐに思いつきますよね。 デザインをがっつりフォーム部分で作り込んでも、CSSのみでは... 続きを読む
jqueryでフォームの値を取得する時、毎回調べてしまうのでまとめとく。 ID指定してattrとかでもいけるんだろうけど、checkboxの時に統一できないんで。 HTML <form name="form"> タイトル <input type="text" name="title" id="title"> <br /> コメント <input ... 続きを読む
<html> <head> <title>test</title> <script language="JavaScript"><!-- function send() { document.myFORM.submit(); } // --></script> </head> <body> <form name="myFORM"> <input type="text" value="test"> <input type="button" value="送信する" name... 続きを読む
When creating a web form you have to make a functional and visually aligned layout. The simplest way to do this is to place elements in a table or by fixing width of labels. Tables stretch its cells according to width of largest element in a ... 続きを読む
お問い合わせやログイン、アンケートなどなど、ウェブデザインには欠かせないフォーム。 今回は、そんなフォームをデザインする方法をいくつかまとめてご紹介します。 JavaScriptやCSSを使えば結構いろいろなことができそうです。 FancyForm mootoolを使ってチ... 続きを読む