Skip to content

Instantly share code, notes, and snippets.

@qborreda
Created May 7, 2013 09:18
Show Gist options
  • Save qborreda/5531352 to your computer and use it in GitHub Desktop.
Save qborreda/5531352 to your computer and use it in GitHub Desktop.
CSS + jQuery Style Switcher
<link type="text/css" href="estilo1.css" rel="Stylesheet" id="linkestilo">
<a href="estilo2.css" class="enlaceestilo">Cambia el estilo!</a><br>
<a href="estilo3.css" class="enlaceestilo">Cambia a otro estilo!</a><br>
<a href="estilo1.css" class="enlaceestilo">Volver al estilo original</a>
$(".enlaceestilo").click(function(e){
e.preventDefault();
var rutaEstilo = $(this).attr("href")
$("#linkestilo").attr("href", rutaEstilo)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment