I've just tested your code coz i'm curious and it's working with FF
3.0, or IE7...the code i tested is below.
btw I would say <a>test</a> is a link, and <a name="test"></a> is an
anchor ;)
Are you using the latest versions of jquery/ui ?
[code]
<html>
<head>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-
personalized-1.5.3.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$('.column').selectable();
$('a').click(function(){
alert('test');
});
});
</script>
</head>
<body>
<div class="column" style="border:1px solid green">
<a style="border:1px solid red">test</a>
</div>
</body>
</html>
[/code]
On 23 fév, 19:36, How <[email protected]> wrote:
> Hi
>
> need some help please. anchor in inside div is not working in firefox
> when div is selectable, but works fine in opera.
>
> <div class="column">
> <a>test</a>
> <div>
>
> $('.column').selectable();
> $('a').click(function(){
> alert('test');
>
> });