You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

  1. Use the following code to incorporate jQuery Tooltip into the form. Add a Custom HTML and add in the following code. Amend accordingly.

    ใช้รหัสต่อไปนี้เพื่อรวม jQuery Tooltip ไว้ในแบบฟอร์ม เพิ่ม HTML ที่กำหนดเองและเพิ่มในรหัสต่อไปนี้ แก้ไขตาม

    <script type="text/javascript">
    $(function() {
    
    //customize your hints here by specifying form element ID on the left and message on the right
    messages = { 'title' : 'Key in a suitable title',
                'remark' : 'Extra note goes here'};
     
    //do not modify anything below here.
    $( document ).tooltip({
          items: "input",
          content: function() {
            var element = $( this );
            if( messages[$(element).attr("name")] ){
              return messages[$(element).attr("name")];
            }else{
              return false;
            }
          }
        });
        
    });
    </script>
  2. The next time when someone hover over the field, the hint will show up.

    ครั้งต่อไปเมื่อมีคนเลื่อนเมาส์ไปเหนือสนามคำใบ้จะปรากฏขึ้น



     

Reference: http://api.jqueryui.com/tooltip/

อ้างอิง: http://api.jqueryui.com/tooltip/


Related Elements

องค์ประกอบที่เกี่ยวข้อง




  • No labels