Click to See Complete Forum and Search --> : Jeditable problem


Zaio
07-11-2011, 05:14 PM
Good afternoon everyone, I've been trying to use the jeditable script for some hours now, apparently doing everything fine and it still won't work, it just won't do anything.
Any ideas?
The scripts paths are right by the way.


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="Comunicados.test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="/scripts/jquery.min.js" type="text/javascript"></script>
<script src="/scripts/jquery.jeditable.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.edit').editable('http://www.example.com/save.php');
});
</script>
</head>
<body>
<div class="edit" id="div_1">This SHOULD be editable</div>
</body>
</html>