data in mysql show after barcode split and matches character
Posted
by klox
on Stack Overflow
See other posts from Stack Overflow
or by klox
Published on 2010-06-10T07:20:57Z
Indexed on
2010/06/10
7:22 UTC
Read the original article
Hit count: 310
i need some code for the next step..this my first step:
<script>
$("#mod").change(function() {
var barcode;
barCode=$("#mod").val();
var data=barCode.split(" ");
$("#mod").val(data[0]);
$("#seri").val(data[1]);
var str=data[0];
var matches=str.matches(/EE|[EJU]).*(D)/i);
});
</script>
after matches..i want the result can connect to data base then show data from table inside <div id="value">
...how to do that?
© Stack Overflow or respective owner