Snippets

Create an account or login to be able to add, comment and rate snippets.

Navigation

Snippets by user Michel D'HOOGE Snippets by user Michel D'HOOGE

Bookmarklet to toggle between dev & prod environments

The following bookmarklet toggles between the dev and prod environments. It simply does that by adding or removing the '_dev' suffix before the first ".php" of the URL.

javascript:var parts=location.pathname.match(/(.*?)(_dev)?(\.php.*)/);location.pathname=parts[1]+(parts[2]?'':'_dev')+parts[3]
by Michel D'HOOGE on 2007-08-31, tagged bookmarklet  debug 
(1 comment)