$(document).ready(function () { $("#slider").attr('class', 'ukaz'); $("#slider").easySlider({ auto: true, continuous: true }); }); $(function() { var limit = 380; var chars = $(".popis").text(); if ($(".popis").html() != null) chars = $(".popis").html(); if (chars.length > limit) { var visiblePart = $(" "+ chars.substr(0, limit-1) +""); var dots = $("... "); var hiddenPart = $(""+ chars.substr(limit-1) +""); var readMore = $("zobraz více"); readMore.click(function() { $(this).prev().remove(); // remove dots $(this).next().show(); $(this).remove(); // remove 'read more' }); $(".popis").empty() .append(visiblePart) .append(dots) .append(readMore) .append(hiddenPart); } }); $(function() { var limit = 280; var chars = $(".popis_znacky").text(); if ($(".popis_znacky").html() != null) chars = $(".popis_znacky").html(); if (chars.length > limit) { var visiblePart = $(" "+ chars.substr(0, limit-1) +""); var dots = $("... "); var hiddenPart = $(""+ chars.substr(limit-1) +""); var readMore = $("zobraz více"); readMore.click(function() { $(this).prev().remove(); // remove dots $(this).next().show(); $(this).remove(); // remove 'read more' }); $(".popis_znacky").empty() .append(visiblePart) .append(dots) .append(readMore) .append(hiddenPart); } }); var modalWindow = { parent:"body", windowId:null, content:null, width:null, height:null, close:function() { $(".modal-window").remove(); $(".modal-overlay").remove(); }, open:function() { var modal = ""; modal += "
"; modal += "
"; modal += this.content; modal += "
"; $(this.parent).append(modal); $(".modal-window").append(""); $(".close-window").click(function(){modalWindow.close();}); $(".modal-overlay").click(function(){modalWindow.close();}); } }; var openMyModal = function(source) { modalWindow.windowId = "myModal"; modalWindow.width = 480; modalWindow.height = 100; modalWindow.content = ""; modalWindow.open(); };