asp.net - jQuery button not showed as a jQuery button in a tabbed page -
i have button in jquery tabbed page declared this:
<input id="buttonsave" type="submit" value="save" />
i have script below:
$('#buttonsave').button(); $("#buttonsave").live('click', function () { alert('button clicked'); });
when button clicked have message 'button clicked'. that's ok. button has not look'n feel of jquery button.
any idea?
to clear, add here screenshots.
below can see page tabbed page @ bottom.
i trigger script below in order render buttons jquery buttons:
$(":button").button();
this script update page showed below:
as can see, button located on main page rendered jquery. others buttons (located on tabbed page) didn't render correctly.
try this: change live
function bind
. if don't see 'button clicked' message, try put script after html code.
Comments
Post a Comment