Php code, Database Connections with Mysql, Java Script , Jquery, Codeigniter
Sunday, 29 October 2017
CloudWalker Cloud TV 109cm (43 inch) Full HD LED Smart TV (CLOUD TV 43SF)
CloudWalker Cloud TV 109cm (43 inch) Full HD LED Smart TV (CLOUD TV 43SF)
http://fkrt.it/GdJDKTuuuN
http://fkrt.it/GdJDKTuuuN
Tuesday, 1 November 2016
Thursday, 18 August 2016
Remove Non numbers in input values in jquery
Remove Non numbers in input values in jquery
if (/\D/g.test(this.value))
{
// Filter non-digits from input value.
this.value = this.value.replace(/\D/g, '');
}
{
// Filter non-digits from input value.
this.value = this.value.replace(/\D/g, '');
}
Labels:
jquery,
php,
remove non digits,
remove non numbers,
remove non numeric
Friday, 29 July 2016
Get dropdown value, text in jquery
Get dropdown value, text in jquery
jQuery(".cls_name option:selected").attr('name');
jQuery(".cls_name option:selected").text();
jQuery(".cls_name option:selected").attr('name');
jQuery(".cls_name option:selected").text();
Tuesday, 1 December 2015
Remove all characters and spaces form string in php
Remove all characters and spaces form string in php
$string = 'name @123&';
echo preg_replace('/[^A-Za-z0-9\-]/', '', $string)
Subscribe to:
Posts (Atom)