Changes between Version 3 and Version 4 of javascriptRules


Ignore:
Timestamp:
01/19/12 16:36:14 (13 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • javascriptRules

    v3 v4  
    99  * Many of the bellow listed thing are similar. 
    1010  
    11  == HTML/CSS rules == 
     11 == HTML rules == 
    1212 * The style attribute of HTML tags should not be used, if possible. 
    1313 * Presentational HTML tags such as <font> should not be used at all. 
     
    1818 * Avoid inline event handlers. (like <div onclick='function (e) {code, code, code, code}'>) 
    1919 * Dynamically add markup that has no purpose when JavaScript is disabled by the user. 
     20 * See the CSS rules : [wiki:CssRules] . 
    2021 
    2122 = JavaScript rules =