This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
<script> | |
function translate_bing(text, sl, tl, success, complete){ | |
if(typeof(complete) != 'function') | |
complete = function(){}; | |
jQuery.ajax({ | |
url: 'http://api.bing.net/json.aspx?JsonCallback=?', | |
dataType: 'jsonp', | |
data: { | |
'AppId' : 'F3A5B8832ED2798D80A77717B631E18229AD3A84', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//... | |
public function setCollection($collection){ | |
//... | |
$collection->joinAttribute('hohlkammern', 'catalog_product/hohlkammern', 'entity_id', null, 'right'); | |
$collection->joinAttribute('hohlkammern_alt', 'catalog_product/hohlkammern_alt', 'entity_id', null, 'right'); | |
$collection->joinAttribute('ausreissteg', 'catalog_product/ausreissteg', 'entity_id', null, 'right'); | |
$whereStatement = " | |
at_hohlkammern.value = {$hohlkammern} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index.html: before </BODY> | |
jQuery(function(){ | |
$('.nav li').mouseover(function() { | |
$(this).addClass('hover'); | |
}); | |
$('.nav li').mouseout(function (e) { | |
// Do not close if going over to a select element | |
if (e.target.tagName.toLowerCase() == 'select') return; | |
$(this).removeClass('hover'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
index.html: before </BODY> | |
jQuery(function(){ | |
$('.nav li').mouseover(function() { | |
$(this).addClass('hover'); | |
}); | |
$('.nav li').mouseout(function (e) { | |
// Do not close if going over to a select element | |
if (e.target.tagName.toLowerCase() == 'select') return; | |
$(this).removeClass('hover'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function (){ | |
$("#pikame").PikaChoose({carousel:true, carouselVertical:true, hoverPause:true, stopOnClick: true, startOn:0}); | |
$("#pikame li:eq(0) .clip img").click(); | |
setInterval(function(){ | |
$('.pikachoose').show(); | |
}, 500); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function (){ | |
$("#pikame").PikaChoose({carousel:true, carouselVertical:true, animationSpeed:500,autoPlay:true, transition:[4],animationSpeed:600}); | |
$("#pikame li:eq(0) .clip img").click(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.jcarousel-prev-disabled { | |
opacity:0.5; | |
} | |
.jcarousel-next-disabled { | |
opacity:0.5; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
#left, #right { | |
display: inline-block; | |
background: #333; | |
padding: 10px; | |
color: #000; | |
width: 500px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#page { | |
display: table-row; | |
} | |
#left, #right { | |
display: table-cell; | |
background: #333; | |
padding: 10px; | |
color: #000; | |
width: 500px; |