How to instantiate JQuery UI widget by string?
- by limcheekin
Hi there,
Do you know how to instantiate JQuery UI widget by string?
Let's illustrate it with some sample code. Given the html link element below:
<a id="testLink" href="#">Test Link</a>
Normally, we can make it into button using code below:
$('#testLink').button();
What if I want to instantiate the button with string, for…