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.

enter image description here

i trigger script below in order render buttons jquery buttons:

$(":button").button(); 

this script update page showed below:

enter image description here

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

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -