I have this code and I want to remove first zero from phone number.
mobile = $('#country_code').val();
mobile += input.val();
Country code is: 966
Phone input is: 055642444
And output in this code is: 966055642444
I want it to be 96655642444
without zero after country code.
Thanks