[Solved] My Jquery isn’t “throwing” anything
I see four things in your code: Don’t forget the ; at the end of your jquery click event definition. You should use #someDiv instead of .someDiv as someDiv is an Object Id, not a Object class. This was already mentioned by Wesley. You can’t use this.val() since val() is not a native javascript function. … Read more