-
Created Understanding Javascript Arrays
I am currently working on using Javascript arrays to swap images for rollover buttons. This was working perfectly for one build about a week ago. That is, I am working … -
Began Watching Understanding Javascript Arrays
I am currently working on using Javascript arrays to swap images for rollover buttons. This was working perfectly for one build about a week ago. That is, I am working … -
Created Understanding jQuery Image Rollovers
I am working on developing a simple site, optimizing for mobile. I am using jQuery at this time to render basic, rollover buttons using image-swapping. The issue I am having … -
Began Watching Understanding jQuery Image Rollovers
I am working on developing a simple site, optimizing for mobile. I am using jQuery at this time to render basic, rollover buttons using image-swapping. The issue I am having … -
Replied To a Post in Fluid Design Question(s)
@ gentlemedia, When I look at the site on my smart-phone I do not have a horizontal bar. Rendering on a small device such as this is one of my … -
Replied To a Post in Fluid Design Question(s)
@ gentlemedia Thank you for your reply. Can you elaborate a bit more if possible? The thing about this mark-up is that after testing it a bit it seems to … -
Gave Reputation to gentlemedia in Fluid Design Question(s)
There's not a really a header tag used, but there's a div tag #header in the CSS & HTML. -
Replied To a Post in Fluid Design Question(s)
Live dev http://anchor17.5gbfree.com/ -
Created Fluid Design Question(s)
I am using a template to learn more about fluid design My main confusion at this point regards how structure and size is defined. For example in the CSS, there … -
Began Watching Fluid Design Question(s)
I am using a template to learn more about fluid design My main confusion at this point regards how structure and size is defined. For example in the CSS, there … -
Gave Reputation to LaxLoafer in Windows 10 Login Screen
It should be noted that messing around with the registry can potentially cause your system to stop working properly. Before editing the registry it's normally advisable to [create a backup](http://support.microsoft.com/en-us/kb/322756). … -
Replied To a Post in Windows 10 Login Screen
@ LaxLoafer, Why do I not attempt a registry edit even if is "trivial" as you say? I am not comfortable doing so, possibly ending up permanently locked-out of my … -
Replied To a Post in Windows 10 Login Screen
Thank you for the help and info, LaxLoafer. But, as I learned in school for software: "Never mess with the registery unless you are totally sure what you are doing." … -
Created Windows 10 Login Screen
Hello, To begin, I am a registered member but have not been here in awhile - I have misplaced my login credentials and must post anonymously. I recently purchased a … -
Began Watching Windows 10 Login Screen
Hello, To begin, I am a registered member but have not been here in awhile - I have misplaced my login credentials and must post anonymously. I recently purchased a … -
Gave Reputation to diafol in Radio Buttons - Two Part Question
Have a look at caniuse, e.g: http://caniuse.com/#feat=css-appearance You have some CSS3 props here that are not in any specs e.g. appearance. This is risky. -
Edited Radio Buttons - Two Part Question
Hello. A section of what I am developing for my site requires the User to select an avatar for their account. 1)Instead of using visible radio buttons I have decided … -
Created Radio Buttons - Two Part Question
Hello. A section of what I am developing for my site requires the User to select an avatar for their account. 1)Instead of using visible radio buttons I have decided … -
Began Watching Radio Buttons - Two Part Question
Hello. A section of what I am developing for my site requires the User to select an avatar for their account. 1)Instead of using visible radio buttons I have decided … -
Created jQuery - Message Not Disappearing Upon Text Entry
Hello. I am working on a form with multiple text-entry boxes and I am using jQuery to give messages to the User for each field. So far every field works … -
Began Watching jQuery - Message Not Disappearing Upon Text Entry
Hello. I am working on a form with multiple text-entry boxes and I am using jQuery to give messages to the User for each field. So far every field works … -
Marked Solved Status for Understanding CSS Class Selectors
Hello. I am currently attempting to convert my inline-css for text boxes into classes for my external style sheet; I thought of using class selectors but do not fully understand … -
Replied To a Post in Understanding CSS Class Selectors
This code is an example of what I am using for *each* textbox (I have about 10 textboxes on the page and want to consolidate it somehow) ` Username:<br /> … -
Replied To a Post in Understanding CSS Class Selectors
Textboxes: I am styling textboxes on my registration form/ index page using CSS. At this time, it is all in-line CSS; I would like to convert that at some point … -
Edited Understanding CSS Class Selectors
Hello. I am currently attempting to convert my inline-css for text boxes into classes for my external style sheet; I thought of using class selectors but do not fully understand … -
Created Understanding CSS Class Selectors
Hello. I am currently attempting to convert my inline-css for text boxes into classes for my external style sheet; I thought of using class selectors but do not fully understand … -
Began Watching Understanding CSS Class Selectors
Hello. I am currently attempting to convert my inline-css for text boxes into classes for my external style sheet; I thought of using class selectors but do not fully understand … -
Marked Solved Status for Password Displaying in Address Bar After Form Submission
When I submit a form and the page refreshes the password and password confirmation values are being displayed in the address bar. Why is this? Can anyone explain this and … -
Gave Reputation to cereal in Password Displaying in Address Bar After Form Submission
I suppose you're using this plugin: http://jqueryvalidation.org/ If yes, then it seems you can define only one validation process for the chosen form, so don't set two of them: $('#DemoForm').validate({ … -
Replied To a Post in Password Displaying in Address Bar After Form Submission
cereal: I think that worked perfectly + I have learned a lot from the help you have given me which is very important. I appreciate it! -Matthew -
Replied To a Post in Password Displaying in Address Bar After Form Submission
OK, rereading your last reply, I think I understand better now just what you meant. Thanks again. -
Replied To a Post in Password Displaying in Address Bar After Form Submission
cereal: In your last post you stated "Set only one for this ID." - I am confused by this. I will eventually have at least seven fields to validate on … -
Replied To a Post in Password Displaying in Address Bar After Form Submission
cereal: I will try this all right now. Thank you for such a quick response and for your help! -
Replied To a Post in Password Displaying in Address Bar After Form Submission
cereal: Hi. I have updated the code per your suggestions but am running into other problems now. The form can be submitted with no fields filled and the validation for … -
Gave Reputation to cereal in Password Displaying in Address Bar After Form Submission
Ok, I think you have to fix the opening form tags, at the moment you have three of them, the first is not closed and it will lead to some … -
Replied To a Post in Password Displaying in Address Bar After Form Submission
The code for the posted question: ` <!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <title>jQuery Form Validation</title> </head> <body> <form id="DemoForm" <form method = 'post' action = 'jTest1.8.html' id = 'DemoForm' … -
Replied To a Post in Password Displaying in Address Bar After Form Submission
Actually, I am already using POST, not GET. -
Gave Reputation to cereal in Password Displaying in Address Bar After Form Submission
It happens when you use the GET method, use POST instead. -
Created Password Displaying in Address Bar After Form Submission
When I submit a form and the page refreshes the password and password confirmation values are being displayed in the address bar. Why is this? Can anyone explain this and … -
Began Watching Password Displaying in Address Bar After Form Submission
When I submit a form and the page refreshes the password and password confirmation values are being displayed in the address bar. Why is this? Can anyone explain this and … -
Marked Solved Status for Registration Button Not Working
Hello. This is probably something very simple that I am missing (Or something that I have done wrong), but upon filling in and validating all fields of the form and … -
Replied To a Post in Registration Button Not Working
Problems resolved for now (I think). -
Replied To a Post in Registration Button Not Working
UPDATE: It now appears to be submitting, but the validation for the password fields do not throw errors when incorrect. Very confused. -
Created Registration Button Not Working
Hello. This is probably something very simple that I am missing (Or something that I have done wrong), but upon filling in and validating all fields of the form and … -
Began Watching Registration Button Not Working
Hello. This is probably something very simple that I am missing (Or something that I have done wrong), but upon filling in and validating all fields of the form and … -
Replied To a Post in jQuery: Password Confirmation
THIS is what I had originally been working with but does not work for password validation or messages: ` <!DOCTYPE html> <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <title>jQuery Form Validation</title> </head> <body> … -
Replied To a Post in jQuery: Password Confirmation
I realized I made an error in posting the code here, duplicating code that should not be. That does not solve the error. I posted the password code twice here … -
Edited jQuery: Password Confirmation
Hello. I am rebuilding a registration page and the accompanying form. I am at a point of implementing jQuery for password validation. It will not validate nor does it give … -
Created jQuery: Password Confirmation
Hello. I am rebuilding a registration page and the accompanying form. I am at a point of implementing jQuery for password validation. It will not validate nor does it give … -
Began Watching jQuery: Password Confirmation
Hello. I am rebuilding a registration page and the accompanying form. I am at a point of implementing jQuery for password validation. It will not validate nor does it give …
The End.