Page Selector Id ?
PermalinkI have lots of link 'page selector' :
Loader::helper('form/page_selector')->selectPage('targetCID', $targetCID)
And if you add an other parameter, you can call javascript function :
Loader::helper('form/page_selector')->selectPage('targetCID', $targetCID,'my_function')
in my function :
function my_function(cID, cName) { //i want differentiate all my page_selector with an page_selector_id }
How i can add an id such as 'selector_1'... for use in my function ?
Thanks you all :)