Results 1 to 3 of 3

Thread: how to display linkbutton using jquery

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jun 2007
    Location
    Karachi
    Posts
    551

    how to display linkbutton using jquery

    hi to all

    can any one tell me how to display linkbutton visible using jquery ...

    Thnaks
    There is no achievement without goals

  2. #2
    Hyperactive Member xxarmoxx's Avatar
    Join Date
    Mar 2007
    Posts
    378

    Re: how to display linkbutton using jquery

    Something like this should work:

    Code:
        var test = $('<button/>',
        {
            text: 'Test',
            click: function () { alert('hi'); }
        });
    
        $('body').append(test);

  3. #3
    New Member
    Join Date
    Mar 2014
    Posts
    9

    Re: how to display linkbutton using jquery

    You can also use something like EasyUI library - this will speed up creating many things. Their tutorial on creating link button is here: jeasyui.com/tutorial/mb/linkbutton.php

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width