thanks Paul,
i knew that rule, but didn't realize that was the issue. i just
switched to using classes, and its all good now.
appreciate it,
imran
On Jun 9, 3:46 am, Paul Mills wrote:
> Hi,
> Your HTML is not valid. IDs must be unique - you have used #txtSpin
> and #color twice.
>
> Try ren
Hi,
Your HTML is not valid. IDs must be unique - you have used #txtSpin
and #color twice.
Try renaming the first input box as id="txtSpin1" and the second as
id="txtSpin2"
Your JavaScript code then becomes much simpler:
$('#txtSpin1').SpinButton({min:1});
$('#txtSpin2').SpinButton({min:1});
or
2 matches
Mail list logo