Need help - colorpicker

In my form I used quarry for create add more field.
Ex: [+ New Image] if you click on this link then create the text field as u need.so I need to apply color pick that text field
If i called it outside jquary it is working well ex:
but in my case I need to call it inside following function.
I used jquary function to create above text field
$(document).ready(function(){
$(’#AddUrl’).click(function(){
var nextUrlId = 1;
var $tbl=’’;
var $wrap =$(’

’).attr(‘id’, ‘urlParagraph’ + nextUrlId);
$tbl += ‘

’;
$tbl +=‘
Addtional Image Name
’;
$wrap.append($tbl);
$(’#inputBoxes’).append($wrap);
$("#PseudonymTemp").val(nextUrlId);
	//Iterate id number
	nextUrlId++;

});

}

fixed :smiley: