for example:
function Show(modal)
{
$(".box).show();
}
so maybe use <body onload="Show()">
is there any other way?
for example:
function Show(modal)
{
$(".box).show();
}
so maybe use <body onload="Show()">
is there any other way?
$(document).ready(function(){
$(".box).show();
});
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.