Get json data in a page Get link Facebook X Pinterest Email Other Apps March 18, 2021 $. getJSON ( "demo_ajax_json.js" , function (result){ $. each (result, function (i, field){ $( "div" ). append (field + " " ); }); }); Read more
Local Storage in javascript Get link Facebook X Pinterest Email Other Apps March 11, 2021 localStorage only supports strings. Use JSON.stringify() and JSON.parse() . var names = []; names[ 0 ] = prompt( "New member name?" ); localStorage .setItem( "names" , JSON .stringify(names)); //... var storedNames = JSON .parse( localStorage .getItem( "names" )); Read more
Find Unique value from array by custome method Get link Facebook X Pinterest Email Other Apps March 09, 2021 <?php $arr=array(1,1,1,2,1,1,1,1); $temp=""; $unique=""; $i=1; foreach($arr as $value){ if($temp!="" && $temp!=$value){ $unique=$value; break; } $temp=$value; $i++; } echo "Unique Value is ".$unique; ?> Read more
Create json data and use it as dynamic data using jquery in Hindi | Codi... Get link Facebook X Pinterest Email Other Apps March 07, 2021 Read more
Laravel 8 Accessor and Mutator in Hindi | Laravel Tutorial Get link Facebook X Pinterest Email Other Apps March 05, 2021 Read more
custom library creation in codeigniter 4 in hindi Get link Facebook X Pinterest Email Other Apps March 04, 2021 Read more
codeigniter custom helper creation in hindi Get link Facebook X Pinterest Email Other Apps March 03, 2021 Read more
Codeigniter 4 Installation and and Setup | Hindi Expanation Get link Facebook X Pinterest Email Other Apps March 03, 2021 Read more