Javascript Array Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - March 22, 2015 var abc = { x: "X", y: "Y", z: "Z" }; alert(abc.x); Read more
✖ works really well. The HTML code is ✖ Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - March 16, 2015 ✖ Read more
javascript_substring Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - March 15, 2015 var hkc = "bangladesh"; var kc = hkc.substring(6,10); alert(kc); Read more
javascript variable scope Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - March 15, 2015 ফাংশনের ভিতরের ভেরিয়েবল ফাংশনের বাহিরে কল করা যাবে না । কিন্তু ফাংশনের বাহিরের গ্লোবাল ভেরিয়েবল ফাংশনের ভিতরে ব্যাবহার করা যাবে । এই বিষয়টা কে বলা হয় ভেরিয়েবল স্কোপ । Read more
onclick & onblur Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - March 02, 2015 function change_color(ID){ document.getElementById(ID).style.border = "1px red solid"; } function remove_color(ID){ document.getElementById(ID).style.border = "1px gray solid"; } Read more
window.location Get link Facebook X Pinterest Email Other Apps By Hasib Kamal - March 02, 2015 <button onclick="window.location='//www.google.com'">Click to GooGle</button> <select onchange="window.location=this.value"> <option value="http://www.facebook.com/asif24hours">Asif</option> <option value="http://www.facebook.com/fahim24hours">Fahim</option> <option value="http://www.facebook.com/nafis24hours">Nafis</option> </select> Read more