Could not Select specific text on web content:Resolved
Hi,
On page [url] https://www.sce.com/sma/auth/Register.aspx [/url], I want to select
text '@scewebservices.com' using mouse but other texts also got selected. This happen on selecting any text on the page , please let me know how to get rid of this.
In same site on page https://www.sce.com it is working fine.
thanks
Saleem Javed,
Web Accessibilty
Team Lead
Last edited by Saleem on 01 Aug 2009 09:27 am; edited 1 time in total
On page [url] https://www.sce.com/sma/auth/Register.aspx [/url], I want to select
text '@scewebservices.com' using mouse but other texts also got selected. This happen on selecting any text on the page , please let me know how to get rid of this.
In same site on page https://www.sce.com it is working fine.
thanks
Saleem Javed,
Web Accessibilty
Team Lead
Last edited by Saleem on 01 Aug 2009 09:27 am; edited 1 time in total
Works fine here for both pages using Firefox 2.0.0.20 on Windows XP.
Thanks for your quick response.
Forgot to mention, I am testing with IE 6.0. It seems this is bug in IE 6.0. Please suggest if any pointer .
Saleem Javed,
Web Accessibilty
Team Lead
Forgot to mention, I am testing with IE 6.0. It seems this is bug in IE 6.0. Please suggest if any pointer .
Saleem Javed,
Web Accessibilty
Team Lead
Moved to Web Technology.
Saleem, only discussion about the development of this forum should go in the Accessify Forum area. Your questions doesn't appear to relate directly to accessibility so it belongs in Web Technology. Thanks!
I hope you get a response to your question.
James Coltham - Local gov web manager by day, web and accessibility blogger at lunchtime, freelancer by night. Tweets at @prettysimple.
Saleem, only discussion about the development of this forum should go in the Accessify Forum area. Your questions doesn't appear to relate directly to accessibility so it belongs in Web Technology. Thanks!
I hope you get a response to your question.
James Coltham - Local gov web manager by day, web and accessibility blogger at lunchtime, freelancer by night. Tweets at @prettysimple.
Thanks all,
I found that IE 6 has bug with div tag. It is working with following patch
<script type="text/javascript">
// IE 6 hack to allow copy/paste
if (window.createPopup && document.compatMode &&
document.compatMode=="CSS1Compat")
{
document.onreadystatechange = onresize = function fixIE6AbsPos()
{
if (!document.body) return;
if (document.body.style.margin != "0px") document.body.style.margin = 0;
onresize = null;
document.body.style.height = 0;
setTimeout(function(){ document.body.style.height =
document.documentElement.scrollHeight+'px'; }, 1);
setTimeout(function(){ onresize = fixIE6AbsPos; }, 100);
}
}
</script>
Saleem Javed,
Web Accessibilty
Team Lead
I found that IE 6 has bug with div tag. It is working with following patch
<script type="text/javascript">
// IE 6 hack to allow copy/paste
if (window.createPopup && document.compatMode &&
document.compatMode=="CSS1Compat")
{
document.onreadystatechange = onresize = function fixIE6AbsPos()
{
if (!document.body) return;
if (document.body.style.margin != "0px") document.body.style.margin = 0;
onresize = null;
document.body.style.height = 0;
setTimeout(function(){ document.body.style.height =
document.documentElement.scrollHeight+'px'; }, 1);
setTimeout(function(){ onresize = fixIE6AbsPos; }, 100);
}
}
</script>
Saleem Javed,
Web Accessibilty
Team Lead
Saleem, in my view rendering problems with versions of Internet Explorer (IE) are best dealt with by a specific style sheet introduced in the <head> section of your page.
So if the CSS you use for the page normally is general.css, and you need to modify that with some different CSS for IE 6 or earlier, in a style sheet called iemodify.css, you could include in the <head>
You mention that you are testing in IE 6. Don't forget you should test in other versions of IE; IE Tester will let you do that. It is a good idea to check in other major browsers, such as Opera, Firefox, and Safari, too.
So if the CSS you use for the page normally is general.css, and you need to modify that with some different CSS for IE 6 or earlier, in a style sheet called iemodify.css, you could include in the <head>
| Code: |
| <link href="general.css" rel="stylesheet"type="text/css" media="screen">
<!--[if lte IE 6]> <link rel="stylesheet" href="iemodify.css" type="text/css"> <![endif]--> |
You mention that you are testing in IE 6. Don't forget you should test in other versions of IE; IE Tester will let you do that. It is a good idea to check in other major browsers, such as Opera, Firefox, and Safari, too.
It is working fine with other browser and versions of IE. Using some tool it is always better to use the original browser on different machine.
Thanks for youe suggations.
Saleem Javed,
Web Accessibilty
Team Lead
Thanks for youe suggations.
Saleem Javed,
Web Accessibilty
Team Lead



