Link to home
Start Free TrialLog in
Avatar of Eddie Shipman
Eddie ShipmanFlag for United States of America

asked on

Adding Radio not working

  celictype = 'myvalue';
  radio_html = '<input type="radio" name="CeLicenseType" value="'+celictype+'" />'+celictype;
  $(radio_html).appendTo("#sm_content .ce_approval_html");

Open in new window


This creates this HTML:
<input type="radio" name="CeLicenseType" value="myvalue" />

Open in new window


instead of :
<input type="radio" name="CeLicenseType" value="myvalue" />myvalue

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of mrh14852
mrh14852

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Eddie Shipman

ASKER

Thanks, worked great