CoffeeScript – Get URL Query String

Find a simple and nice helper function from CSS-Tricks and convert it into CoffeeScript.

getQueryVariable = (variable) ->
  query = window.location.search.substring(1)
  vars = query.split("&")
  i = 0

  while i < vars.length
    pair = vars[i].split("=")
    return pair[1]  if pair[0] is variable
    i++
  false

 

Done =)

Reference:

One thought on “CoffeeScript – Get URL Query String”

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.