- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
11 Posted Topics
Re: first of all, besides the position of the border that is messed up in IE, i had another error... when i was selecting the check-boxes and deselecting them, they wore still there but invisible... [url]http://archivist.incutio.com/viewlist/css-discuss/37888[/url] this came to mind... the difference between visibility hidden vs display none | |
Re: [QUOTE=cguan_77;1038963]hi guys, just want to ask if it is possible to check which link on the page receives a focus? For example, i got Links name A1, A2, A3, A4 and A5. How to check which link is currently receiving the focus? is it possible to do? thanks ...[/QUOTE] there … | |
Re: [QUOTE=hno;1033326]Hi I want to make a online game web site . i want to klnow , what do i need for now ? should i install any script ? please give me some information about it thanks[/QUOTE] first of all you have to know a programing language... depends on what … | |
Re: [QUOTE=rudz;1038993]document.getElementById(fadeImageID).style.opacity is working in firefox but its not working in ie[/QUOTE] [CODE] <script> function lightup(imageobject, opacity){ if (navigator.appName.indexOf("Netscape")!=-1&&parseInt(navigator.appVersion)>=5) imageobject.style.MozOpacity=opacity/100 else if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4) imageobject.filters.alpha.opacity=opacity } </script> <img src="test.gif" style="filter:alpha(opacity=50); -moz-opacity:0.5" onMouseover="lightup(this, 100)" onMouseout="lightup(this, 30)"> [/CODE] try the code above, if that doesn't help try: [URL="http://www.akxl.net/labs/articles/use-javascript-to-change-or-fade-opacity-or-transparency-of-html-entities/"]http://www.akxl.net/labs/articles/use-javascript-to-change-or-fade-opacity-or-transparency-of-html-entities/[/URL] | |
Re: [QUOTE=anuj576;1033085]Hey Guys, I want to redirect a page to another page in JSP after a certain validation has been done using AJAX. If the validation is done it should redirect the user to another page but if validation is not done then it should remain on the same page. Please … | |
Re: [QUOTE=mcrawford3911;1037959]Thank you, I'm going to look at the code and figure out the difference....I really appreciate it!!![/QUOTE] the different line is: var D = parseFloat([COLOR="Red"]D[/COLOR]text); you copypaste too much :P btw there is a button called reset :) check <input type='reset'> :) | |
Re: [QUOTE=isuruj;1037807]I am using scrollTo(x,y) function in my web application and function is not working in IE. But it is working with firefox. I'm using IE6. So can someone give me the reason and how to use scrollTo function with IE?[/QUOTE] [CODE] <html> <body> <script language="JavaScript"> function function1(){ window.scrollTo(200,200); } function … | |
Re: [QUOTE=ayusman.mohanty;1036334]Hi, Even I am trying the browser close event for cross browser and this should trigger only when X button is clicked or page is refreshed. Here's the code pasted above which I am using but it only works in IE. I know the issue is because of window.events and … | |
Re: if you want to change only a part of the text from inside of your website try something like this: [CODE]function change_content() { document.getElementById('content').innerHTML='the new text'; }[/CODE] and you call this function on a onclick envent... something like: [CODE]<div id='content' onclick='change_content()'>click here</div>[/CODE] i didn't understand exactly what you want... this … | |
Re: [QUOTE=ofoman;1034227]Hi everyone, Firstly,sorry about my bad english.i hope telling my problem clearly:) anyway i want to tell about my project.it s about survey system..I am creatin g dynamic questions and question's choices(radiobuttons or checkboxes) from database when runtime..after users answer the question,press next button to pass the next questions For … | |
Re: first of all please write the correct code.... you forgot a ' [CODE]show_popup('image.jpg','Image Example ','acrylic on masonite','62 X 48 inches',430,564)[/CODE] second of all the functions createPopup() and show() don't exist, replace then with window.open(), for more info about that function try google here is a code that works: [CODE]<html> <head> … |
The End.