Friday, January 1, 2016

how to use the ready-event document ready in jquery

$(document).ready(function ()
{
    // ...
});
another way

$(function ()
{
    // ...
});

No comments:

Post a Comment