Advertisement
brendanftw

Jeditable

May 10th, 2011
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $(".hours").live("mouseover", function(){ $(this).editable(function(value) {return(value);},
  2. {
  3. type : 'text',
  4. select : 'true', onblur : 'submit',
  5.  
  6. callback: function(){
  7.  
  8. if($(this).text() == ''){
  9. $(this).text("0.00"); //Set a blank number field to 0.0
  10. }
  11. updateTotals();
  12. }
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement