hi,
i have requirement to make the browser firefox and chrome full screen as soon as the page open
i checkout many javascript but nothing works
please advice thanks
nauna says: $("#btn").live("click", function () { $(document).fullScreen(true); });
$(
"#btn"
).live(
"click"
,
function
() {
$(document).fullScreen(
true
);
});
replace above with below
$(function () { $(document).fullScreen(true); });
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.