Hi
i have created tab using JQuery EasyUI
i am writing code which is working correct but the problem is that when i implement same functionality in my other files there i got a error.
the error is
" Uncaught TypeError: $(...).tabs is not a function"
if anyone know why this error is coming kindly help me.
CSS & JS
This is code HTML
This is Code of JS
function addTab(title, url){
if ($('#tt').tabs('exists', title)){
$('#tt').tabs('select', title);
} else {
var content = '
'+url+'
';$('#tt').tabs('add',{
title:title,
content:content,
closable:true
});
}
}
2 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sumit JoshiPosted Aug 21, 2015, 5:09 AM
priya guptaPosted Aug 21, 2015, 5:00 AM