I'm trying to use jquery draggable ui , but it seems like the ui is not well imported
I'd run this test :
if(jQuery.ui){
alert("loaded");
}
else
{
alert("not loaded");
}
And got an "not loaded" alert....
Here are the first code lines of the file i'm writing :
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<?php
$searchQuery = $_POST['searchQuery'];
?>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
Any idea what might went wrong ?
*I'm already using another jQuery functions which work just fine , so the jquery package is imported for sure , I gurss the problem is the ui import did not success.