I want to add a space between every 4 characters. I'm developing a webpage about credit card numbers.
example
var x = document.getElementById("card_number").value;
example : if the value of x is 1234567890123456
I need to split this number every 4 characters and add a space. Like this
1234 5678 9012 3456
and I need this number on a variable. Because I need to set this number on the textbox. Please help me. thanks