Monday, 8. June 2009, 17:17:38
Site preferences, javascript, opera, bug
I'm trying to disable Javascript for a particular website.
So I used the menu "Tools", "Quick Preferences", "Edit site preferences" and I disabled javascript for the website.
But javascript is automatically re-enabling itself when opening a new tab.
Maybe it's because I'm using a shortcut checkbox for controlling Javascript in my address bar.
I thought this checkbox would first check if javascript is activated to appeared checked or unchecked.
Actually, it seems to be always checked.
I removed this shortcut and the problem disappeared.
I think I will have to get rid of this wonderful shortcut ...
Thursday, 6. November 2008, 18:45:15
myspace, javascript, opera, bug
...
I was unable to complete my suscription on MySpace with Opera. Ajax issue ?
Monday, 3. December 2007, 23:15:42
opera, bug, flash
Thursday, 1. November 2007, 20:05:26
display, page, blank, opera
...
I experienced a little program browsing a page on this site : www.laltruiste.com. If I want to display a page about a category (left menu), I have a partly blank page. Why ?
Exemple of page I can't display (compare it with Firefox or IE) :
http://www.laltruiste.com/document.php?page=1&rep=11.
Tuesday, 16. October 2007, 10:24:53
javascript, Get, XMLHttpRequest, opera
...
I let this post. Some of you may be searching for ajax examples. Don't be afraid of asking questions !
I experienced a little "bug" with a request made through Ajax. There may are solutions to fix it but I don't know them up to now.
I put two pages on my server (
http://www.serv-dep.com/bouzin).
The first uses the GET method and didn't worked as expected :
http://www.serv-dep.com/bouzin/opera-ajax-get-method.phpFinally, I found a trick to overcome this problem :
http://www.serv-dep.com/bouzin/opera-ajax-post-method.phpBut I'm still waiting for other solutions from the community.
Special thanks to dAEk and gdb for their enlightments.
Yves.
Wednesday, 3. October 2007, 15:45:28
javascript, opera, css, html
...
Problem with cursor: hand; and cursor: pointer;
exemple of html,CSS and javascript code :
<!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>Experiencing some bugs with my beloved Opera ...</title>
<script language="javascript" type="text/javascript">
function change_style_on(){
document.getElementById("cell_a").className="cell_on";
document.getElementById("cell_b").className="cell_on";
}
function change_style_off(){
document.getElementById("cell_a").className="cell_off";
document.getElementById("cell_b").className="cell_off";
}
function change_style_on2(){
document.getElementById("cell_a2").className="cell_on";
document.getElementById("cell_b2").className="cell_on";
}
function change_style_off2(){
document.getElementById("cell_a2").className="cell_off";
document.getElementById("cell_b2").className="cell_off";
}
</script>
<style type="text/css">
.cell_on{
background-color:red;
cursor: pointer;
}
.cell_off{
background-color:#ABCDEF;
}
</style>
</head>
<body>
<h3>Point on the table and move from right to left</h3>
<h4>The apparition of the pointer is really randomized</h4>
<table>
<tr>
<td id="cell_a" class="cell_off" onmouseover="change_style_on()" onmouseout="change_style_off()">test text</td>
<td id="cell_b" class="cell_off" onmouseover="change_style_on()" onmouseout="change_style_off()">test text</td>
</tr>
</table>
<h3>A start of explanation !</h3>
<h4>Whithout cell spacing, we see that when you change of cell, the cursor become a pointer.
Come back on the former cell and the pointer is there !</h4>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="cell_a2" class="cell_off" onmouseover="change_style_on2()" onmouseout="change_style_off2()">test text</td>
<td id="cell_b2" class="cell_off" onmouseover="change_style_on2()" onmouseout="change_style_off2()">test text</td>
</tr>
</table>
<br />
<h4><a href="http://www.serv-dep.com">Back to root</a></h4>
</body>
</html>
You can see a "demo" of this bug
here.