Sorry I'm new in Javascript and i need help. My problem is like this. I have one variable like this, ie:
abcdefg1234567hijklmnop
that variable consists of 3 parts: string,number,string. The problem is I don't know how to split them become:
var1=abcdefg
var2=1234567
var3=hijklmnop
so I can send them to another php file with ajax post. Is there a way to make it happens? thanks.