Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var yo = "test.jpg";
var fileparts = yo.split(".");
var ext = "." + fileparts[1];
var yo = "test.jpg";
var ext = yo.substring(yo.indexOf("."), yo.length);
var yo = "test.jpg";
var fileparts = yo.split(".");
var ext = "." + fileparts[fileparts.length - 1];
var yo = "test.jpg";
var ext = yo.substring(yo.lastIndexOf("."));