it’s out: jSocialize – jQuery version of mooSocialize!
Finally it’s here, the first beta of jSocialize, brother ( or sister ) of mooSocialize. It’s been tested in Firefox, IE7 and Opera 9+. and please leave a feedback on it if you find bugs etc.
it’s out: jSocialize – jQuery version of mooSocialize!
Finally it’s here, the first beta of jSocialize, brother ( or sister ) of mooSocialize. It’s been tested in Firefox, IE7 and Opera 9+. and please leave a feedback on it if you find bugs etc.
Comment by Nicolay Vasiliev
May 7, 2008Dear Frank,
Thanks so much for your work. However I have two more questions.
1. Would you change the “mooSocialize” to something else because it not mooTools-ed?
2. I’ve met some strange effect. When was adding your page to delicious after saving your page was opened again in frame inside the same page. Is this a bug or a feature?
Comment by admin
May 7, 2008Hi Nicolay,
thanks for pointing this out. Yes, the button will become jSocialize instead of “moo”, just need to find the time to change it
For the second strange behaviour, this is also in mooSocialize and has to do with delicious itself, yet I didn’t find a way to prevent that. I’ll continue investigating it.
cheers
Frank
Comment by Peter
September 16, 2008I have a strange problem, when you click the image for the popup menu, it always displays in the top left of the browser.Is it possible to change it so the popup displays where the button is located.
pleasde note the mootools version is not like this, it works perfectly
Comment by pk
September 27, 2008I see the same problem as Peter , The Popup menu, displays always at the Top Left. Any idea how to fix?
Comment by admin
September 28, 2008Hi folks,
here’s a solution for this problem. Replace line 15 ( starts with “var top=” ) to line 23 with this code
var top = $(“.socializer”).offset().top;
var height = $(“.socializer”).height();
var left = $(“.socializer”).offset().left;
var pos = top+height+20;
var div = document.createElement(“div”);
$(div).hide();
$(div).addClass(“soc_container”);
$(div).attr(“style”, “top:” + (top – 330) + “px; left: ” + left + “px” );
$(document.body).prepend(div);
You might need to change the “top-330″ to your needs… let me know if that worked for you all.
Comment by Jake
November 3, 2008Hi,
Is it possible to have a single image and a single css file instead of dealing with with all the little icons? It would be easier to manage. Thanks.
Comment by Peter
March 4, 2009that’s closer but the open window or iframe window is still out of whack.
Also how can we have mpore than one on a page (e.g. news block)
see example here http://www.dfwcomputer.com.au (scroll down)
Comment by admin
March 4, 2009Hi Peter,
had a look on your page, well I must say, it’s not the problem that jSocialize wouldn’t work correctly, but your flash ads are.
They are not using the wmode = transparent parameter, so they will always overlay anything else.
Comment by admin
March 4, 2009Hi Jake,
yes – the next version will be revamped soon, and it will contain a single image only positioned by css.
Comment by may
March 18, 2009what do i need to do to get this working? i tried following the steps outlined in the moosocialize installation notes, and it’s not working.
Comment by admin
April 2, 2009Hi May,
if you can provide a link to the page where you tried to implement it, we can have a look and point you in the right direction.