C
|
cgphp 3/16/2012 |
There is a typo in your code: disabeld instead of disabled. Fixed: $("input[type='button'][id^='savebutton']").click(function(e){ |
D
|
danaci author 3/16/2012 |
dear cristian, |
C
|
cgphp 3/17/2012 |
Check firebug for errors. |
C
|
cgphp 3/18/2012 |
Check the input type. It might be a submit type not button type. Check also the input id viewing the HTML source code of the html page. $("input[type='submit'][id^='savebutton']").click(function(e){ |
D
|
danaci author 3/19/2012 |
hi, |
C
|
cgphp 3/19/2012 |
Check the button properties with the "element inspector" option of firebug to know the id value and much more. |
D
|
danaci author 3/20/2012 |
dear cristian, |
![]() |
Sergey Kornilov admin 3/20/2012 |
Try something like this: $('#savebutton').click(function(e){
|
D
|
danaci author 3/20/2012 |
thnx admin. it's worked. |