hi to all
can any one tell me how to display linkbutton visible using jquery ...
Thnaks
Printable View
hi to all
can any one tell me how to display linkbutton visible using jquery ...
Thnaks
Something like this should work:
Code:var test = $('<button/>',
{
text: 'Test',
click: function () { alert('hi'); }
});
$('body').append(test);
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