
Re: CSS3 only works after refresh by url bar
Thanks...
After a bit more work, I have figured out that if I delete a specific part of my jQuery js-code, then it works.
I have to delete this part:
Code:
// Dialog
$('#dialog').dialog({
autoOpen: false,
width: 700,
modal: true,
close: clearAdd,
buttons: {
"Luk": function() {
$(this).dialog("close");
}
}
});
How can I fix this?
I tried to move the css-link to the top of the page, but that did not help.
I found this post
http://css3pie.com/forum/viewtopic.php?f=3&t=538After reading this I tried to remove the content of the jQuery dialog. That also works.
So apparently the problem is that the content of the dialog can not contain css3 styled content.
Hope to get more help on this issue...thanks...