Instead of continuing the battle against spammers, we decided to close the forum for new users and topics. But don't worry, there are still plenty of ways to reach us. Most notably, we will move our attention to Stack Overflow, where we will monitor questions under the tags [highcharts], [highstock] and [highslide].
For other ways of getting in touch with us, see Highcharts Support or Highslide Support.
Torstein Hønsi, CTO, 2013-01-29function ajaxLoadGallery(id, name) {
var children = $('#container-' + name + ' > a').size();
if (children <= 1) {
$.getJSON('get.php?gallery=' + name, function(data) {
$.each(data, function(key, value) {
var link = $(document.createElement('a')).attr('href', value.name).attr('class', 'highslide').attr('onclick', 'return hs.expand(this, { thumbnailId: \'opener-' + name + '\', slideshowGroup: ' + id + ' });');
$(link).appendTo('#container-' + name);
var caption = $(document.createElement('div')).attr('class', 'highslide-caption').html(value.title);
$(caption).appendTo('#container-' + name);
})
// open the thumb after the data has arrived over the line
document.getElementById(name).onclick()
});
} else { // open the thumb now
document.getElementById(name).onclick()
}
return false;
}sahar wrote:sorry if that might sound newbish but whats the benefit of such gallery over a normal one ?
sahar wrote:Also why do you have a big empty part on the right side of the images?
Users browsing this forum: Bing [Bot], Google [Bot] and 4 guests