how to show currency on textbox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • HollyHolly
    New Member
    • Mar 2014
    • 1

    how to show currency on textbox

    hi i was trying to show my vaule as a currency in text box .. so when the user enter something .. that textbox show results.. i want to show the number with the £ sign..can some one know how to do that
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    I would just put the currency sign before or after the text field, so you don’t have to concern yourself with constructing/deconstructing the field value.

    Comment

    • Kaloka
      New Member
      • Mar 2014
      • 4

      #3
      so you have to generate to input dynamicly like

      $("field").val( value+" $");

      Comment

      Working...