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%"});
};
colorboxis a built-in jQuery function. Which plugin are you using? – Rodolphe Nov 10 '11 at 8:33