From what I can see ui:dialog isnt a standard psuedo css element, so I was wondering what the following line achieved:
$j("#inline:ui-dialog").dialog("destroy");
I could find a div with id “inline” but where does the ui-dialog come from ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
$.widget()provides a pseudo-selector for your widget automatically. The pseudo-selector is created from the jQuerySubclass, the namespace and the call name.The associated speudo-selector is:
Which means every widget created using
$.widget()automatically provides a pseudo selector.Here is a reference.