Help for this page

Select Code to Download


  1. or download this
    var title = '`title`';  # Fails for titles containing ' or \.
    
  2. or download this
    var title = "`title`";  # Fails for titles containing " or \.
    
  3. or download this
    var title = decodeURIComponent('`title%`');