jQuery code / syntax guidelines
We all write our own jQuery code and since creating custom jQuery plugins is so easy, we all create our own jQuery plugins. And all of us have our own code syntax preferences. For example: function myFunction() {
...
}
// some prefere it like this
function myFunction()
{
...
}
If you want to publish your jQuery plugins following jQuery core code writing guidelines is a good idea. This
...
}
// some prefere it like this
function myFunction()
{
...
}
If you want to publish your jQuery plugins following jQuery core code writing guidelines is a good idea. This
Comments
Post a Comment