Log in   Register a New Account

Accessify Forum - Discuss Website Accessibility

New to the forum?

Only an email address is required.

Register Here

Already registered? Log In

Currently Online

No registered users are online.

Could not Select specific text on web content:Resolved

Reply with quote 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
Reply with quote Works fine here for both pages using Firefox 2.0.0.20 on Windows XP.
Reply with quote 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
Reply with quote 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.
Reply with quote Thanks all,

I found that IE 6 has bug with div tag. It is working with following patch
Very Happy
<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
Reply with quote 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>

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.
Reply with quote 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

Display posts from previous:   

All times are GMT

  • Reply to topic
  • Post new topic