Skip to content

Instantly share code, notes, and snippets.

@internoma
internoma / datos.json
Created May 20, 2013 18:53
Leer base de datos JSON desde archivo datos.json
{
"videos": [
{
"Titulo": "RESPONSIVE WEB DESIGN CON BOOTSTRAP",
"Tiempo": "01:07:20",
"Final": "si"
},
{
"Titulo": "Presentación",
"Tiempo": "00:03:20",
@internoma
internoma / ocupado.css
Created May 20, 2013 18:53
Jquery evento en enlaces (busy - ocupado)
.ocupado {
cursor: wait !important;
}
@internoma
internoma / hover.js
Created May 20, 2013 18:53
JQuery imagen Hover
// RECORDAR QUE HAY QUE AÑADIR LA CLASE .over A LAS ETIQUETAS IMG
// LAS IMÁGENES QUE SE INTERCAMBIAN TIENEN LA CLAVE -ON
// EJEMPLO: <img class="over" src="archivo.png">
$('img.over').each(function(){
var t=$(this);
var src1= t.attr('src'); // inicial src
var newSrc = src1.substring(0, src1.lastIndexOf('.')); // obtiene el nombre sin extension
// Add a CSS class to a specific element
$('#myelement').addClass('myclass');
// Removing a CSS class from a specific element
$('#myelement').removeClass('myclass');
// Check if a specific element has a CSS class
@internoma
internoma / faded.js
Created May 20, 2013 18:53
Faded jquery
$(document).on('ready',function (){
$(".faded").hide().delay(500).fadeTo('fast',1);
});
@internoma
internoma / Asset.js
Created May 20, 2013 18:53
Evento Click básico
$("").click(function (event) {
});
@internoma
internoma / target-blank.js
Created May 20, 2013 18:53
Añade target _blank a los enlaces externos
var root = location.protocol + '//' + location.host;
$('a').not(':contains(root)').click(function(){
this.target = "_blank";
})
@internoma
internoma / script.js
Created May 20, 2013 18:53
Cookies Jquery
//get cookie
function getCookie( name ) {
var start = document.cookie.indexOf( name + "=" );
var len = start + name.length + 1;
if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) ) {
return null;
}
if ( start == -1 ) return null;
var end = document.cookie.indexOf( ';', len );
if ( end == -1 ) end = document.cookie.length;
@internoma
internoma / README.mdown
Created May 20, 2013 18:53
Leer JSON y rellenar control form select

Lee un archivo json y añade la lista de opciones a un elemento select

Reading json file and append list options into element select

@internoma
internoma / script.js
Created May 20, 2013 18:53
Non-Conflicting jQuery
<!-- Example 1: Non-Conflicting jQuery -->
jQuery(document).ready(function(){
jQuery("#jqtest").click( function() {
alert("jQuery is working!");
});
});
<!-- ******************************************************* -->