I’m new to jquery and I wanted to add a dialog to my page when a function is called. Whenever I call this function from the console, the dialog shows up but with the error below. What did it mean and how to solve it ?
JavaScript
x
12
12
1
Uncaught TypeError: a( ).parents( ).andSelf is not a function
2
at d (jquery-ui.min.js:5)
3
at c (jquery-ui.min.js:5)
4
at Array.tabbable (jquery-ui.min.js:5)
5
at jquery.min.js:2
6
at r (jquery.min.js:2)
7
at se.select (jquery.min.js:2)
8
at Function.se [as find] (jquery.min.js:2)
9
at k.fn.init.find (jquery.min.js:2)
10
at a.<computed>.<computed>.open (jquery-ui.min.js:5)
11
at a.<computed>.<computed>._init (jquery-ui.min.js:5)
12
I’v used these jquery libraries :
JavaScript
1
4
1
<script src="../vendor/jquery/jquery.min.js"></script> //Given with my bootstrap theme
2
<script src="../vendor/jquery-easing/jquery.easing.min.js"></script>
3
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
4
And the function I called is this one :
JavaScript
1
6
1
function afficherPopupErreur() {
2
$('body').append('<div id="dialog" title="Basic dialog"><p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the x icon.</p></div>');
3
$( "#dialog" ).dialog();
4
}
5
6
I know that this append is quite weird but it was just to try the dialog.
Advertisement
Answer
andSelf is deprecated and removed – use newer JQUI
Also always use the HTTPS versions
JavaScript
1
8
1
function afficherPopupErreur() {
2
$('body').append('<div id="dialog" title="Basic dialog"><p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the x icon.</p></div>');
3
$("#dialog").dialog();
4
}
5
6
$(function() {
7
afficherPopupErreur();
8
});
JavaScript
1
2
1
.ui-dialog-titlebar-close { float:right}
2
.ui-dialog-titlebar-close::after { content:"X" }
JavaScript
1
7
1
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
2
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.js"></script>
3
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
4
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
5
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
6
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-bootstrap/0.5pre/assets/css/bootstrap.min.css" />
7
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>