I have the following code
<a href="#inline" class="fancy" id="item1">hello item1</a>
<a href="#inline" class="fancy" id="item2">hello item2</a>
<div id='inline'><input name="" type="text" value="hello 1" /></div>
$(".fancy").fancybox();
I want to change the value of text-field dynamically with the parameter.
is there any techniques or ways to pass id as a parameter.
p.s i am not interested in ajax implementation.
thanks.
Finally, i found the solution
thanks all the help.