Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to jquery and haven’t spend much time with JavaScript either. What I am trying to achieve is to create a function that open a colorbox based on the inparameter. So basically you call the function and the colorbox opens.

function openWindow(textstring) { 
    $(textstring).colorbox({inline:true, width:"50%"});
};
share|improve this question
I don't think colorbox is a built-in jQuery function. Which plugin are you using? – Rodolphe Nov 10 '11 at 8:33
jacklmoore.com/colorbox – Olle89 Nov 10 '11 at 8:40

1 Answer

up vote 1 down vote accepted
function openWindow(textstring) { 
    $.colorbox({html:textstring});
};

works, I saw it on their official page. Had looked at the same page yesterday but probably didn’t saw it because of my limited jquery syntax knowledge. Wasn’t meant to answer my own question.

share|improve this answer
your answer does not seem to fit to your question. Maybe it will be better to edit your answer, clarify what you wanted to ask so that future visitors will learn from this question and answer. – melihcelik Nov 21 '11 at 0:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.