jcoder
-
Help Creating A Dynamic Credit Card Dropdown
@JoshBlackwood, Thanks for the help and multiple versions! That's a good point on JavaScript being disabled, but I learned some new stuff : ) Thanks!
-
jQuery Validation
Josh, Thanks for the comment, I definitely see what mean about the huge list every time it tries to validate. I made a quick update to prevent this. How does this look below? CodePen $("form").on("submit", function(e){ $(&qu…
-
jQuery Validation
How does something like this look? $("form").on("submit", function(e){ $("input").each(function(){ var $this = $(this); if($($this).val() == ""){ var name = $($this).attr("name");…
-
jQuery Validation
I'm fairly new to both, I have been using both for the past year but for very basic uses. I am trying to step up my game now! Thanks!
-
jQuery Validation
Hi John, Thanks for the help, it worked! I have modified your code a little below and I'm just curious why you don't think this is well written code? I'm new to jQuery but would love to learn best practices. $("form").on(…
-
jQuery Validation
Thanks for the quick response! I have used plugins in the past but I really wanted to try and write my own this time. I have messed around with some jQuery before though your script looks very confusing (No Offence), I have never seen jQery.data(...…
-
jQuery Vertical Slide Issue
Thanks, I got it! Link is below. http://codepen.io/jbatzel1/pen/Kuyig
-
$(div).ready(function(){ -- Is this possible?
Thanks for all the Great Help Everyone!
-
$(div).ready(function(){ -- Is this possible?
Hi All, Why won't the .load event work? But the Hover Does? This Code Works: $(document).ready(function() { $(".TH").hover(function() { $(this).attr("value", "##IVULP##"*1000); }); }); This Code Doesn…
-
jQuery "this" Help
TheDoc is there a way to target class ".cartQty" and "this"? Your other suggestions I think are over my head. Thanks!
-
Hiding an Empty Div with jQuery
Thanks! I figured out that it wasn't working because I had some weird spacing going on.
-
Please Help! Only one Anonymous Functions works at a time.
Yeah this will work, but I was trying to get it to where I don't have to have any javascript in my HTML. My other websites are filled with this kind of stuff and I was trying to get it toned down. Thanks
-
Please Help! Only one Anonymous Functions works at a time.
I have two different forms on two different pages, one function is for one page and the other function is for the other. I wanted to combine the JS in a script.js doc. It seems that whichever function is on top is the one that works. Not sure what t…
-
Validating Specific Zip Codes
Would I be able to do something like this? var zipCodes = [1, 2, 3]; var change = document.Get.Element.By.Id ("test").value; if(zipCodes == change){ document.write("Success"); } else { document.write("Error"…
-
onSubmit Validation is affecting multiple buttons - How to Stop?
Thanks! That worked.
-
Need help with "if" statements and combining javascript
HAHAH it is crazy the system that I am using for web development. I have to use a lotus notes program that some guy developed and on top of that he uses his own programing language on top of HTML to build the website!
-
Need help with "if" statements and combining javascript
Thanks I'll try this!
-
Javascript - Remember what was selected after refresh
Great! I'll give this a try.
-
[Solved] Form works on 'enter', not on 'click' - Help?
How about if type was an image, how would you go about this type="image"
-
Does this javascript look right?
I actually go it working. I was missing a }. But after the prompt box comes up and you hit okay it re-loads the page? Can I get it not to reload?