JohnMotylJr
-
Problem with jQuery .removeClass()
Check out these: 1.) toggleClass( ) http://api.jquery.com/toggleClass/ 2.) hasClass( ) http://api.jquery.com/hasClass/
-
Does anyone know how this was done?
Just different elements containing different images, once a color is switched the JS switches the image (along with showing and hiding the main fabric hover state) Check out, http://www.blanklabel.com/Scripts/script.js and check out line 194 (in ch…
-
Inserting the same code for use as a block of elements
Ya know what, that is a good call. Build the elements with js, cache em, and duplicate. Afterwards set element attributes. @fooman, do you have some markup we could look at? Crocodillons implementation wouldn't be hard at all.
-
Inserting the same code for use as a block of elements
Use this as a little reference: http://codepen.io/johnmotyljr/pen/FtLxu I took a snippet from this site and basically hide the first element and copied the rest.
-
Introduction to Mobile Websites. Please help.
First off, the m.website.com thing you see is a sub domain, most hosting allows some free ones which you can name anything. Second, you can do a server side redirect or js to detect device type, size, etc for redirecting. Just Google search php mob…
-
Review and Critique my Website
@jimbob, try this http://www.freewebsitetemplates.com/ if you want anyone to take your website seriously it shouldn't look like its from the 90's. Unless you are running Windows XP and IE5, then rock on!
-
How do you learn JavaScript?
Go to a local college book store and purchase a used somewhat recent copy of intro to (language). Codeacademy.com is free and kinda cool as well. I really suggest you learn something lesson based and structured. Reason being, you will start off with…
-
Possible JavaScript Question?
Some pseudo code to help you along. 1.) Create a counter that counts to 119 seconds. 2.) Reset counter if mouse move event is fired. -- or -- 2.) Reset counter if x or y has changed. 3.) Once counter reaches target time redirect page. If you are d…
-
Seems like a simple fix but im drawing a blank, floating elements!
@CrocoDillon, thanks man.. Taking a month off made me forget the simplest of simple things.. lol thanks again croco and paulie :)
-
Seems like a simple fix but im drawing a blank, floating elements!
@Paulie_D, thanks for the explanation (knowledge is everything). Appreciate the response, do you think adding a middle container would equate to un-needed markup? I added an extra div to act as a wrapper (giving the wrapper the % width). CodePen
-
How do I keep or retain my form values even if the form has been submitted?
Have you thought about using localStorage to save form values?
-
How To Remove Template Credits From This WordPress Template?
lol... must not know what html or css is, and what's that other stuff called... Oh yeah, respect and dignity.
-
Would Using a Definition List for a Form Be Semantic?
Hey, I gave it a read and looks interesting. However, I feel reluctant to just using labels and inputs.
-
Learning Jquery before learning JavaScript
I believe, if you will be using javascript for a while, to learn javascript first. It may not seem as flashy and easy to grasp compared to jquery but you will be cutting yourself short from learning what javascript is truly capable of. Trying to lea…
-
function copy() failed
Everything and anything you need to know about windows 7 http://www.sevenforums.com/
-
Sticky Footer problem
Check out this link, it is the original sticky footer and seems to be updated.
-
Parallax Scrolling!
@Mark_Lawrence_Design, Nice but your 'Awwward winning site' takes 12 years to load?
-
How to put guide comments inside of HTML files?
I would suggest commenting the crap out of your code (which ever language it may be), however, like Paulie_D mentioned, it does at weight to your page. Have a copy just for you which is commented, and whatever you put into production just strip out …
-
Still waiting for replies. Pls
I suggest trying out phonegap, it is a somewhat complex installation process (if you are unfamiliar). If you use windows 7 and are interested in installing it and running some test cases, just inbox me and i can write you something up, or maybe team…
-
Still waiting for replies. Pls
If you want to create mobile apps, then either learn objective c (apple products) or java (android devices). There are frameworks out there for handling both sides of the fence like phonegap in which you only need html, css, and javascript knowledge…
-
if i follow this wordpress tutorial will it work?
@teknofu, bro, i too have used underscores and it is pretty awesome. The html5 boilerplate make a html5 wordpress theme as well, but i have had a good amount of success with that. I say go for it! The more you mess around with stuff the more you lea…
-
iframe work on android browser
how are you trying to implement it? Standard html/css?
-
Making a template cross browser
CSS3 sometimes requires what is called 'Vendor Prefixes', if you google that you can read a shload of documentation. Search this site alone and you can read some relevant stuff. Basically, you add vendor prefixes such as -webkit- // Safa…
-
table vs div
I suggest you got to codepen.io and make a use case of the troubles you are having. Once you run into a problem save the pen and post it back here so we can see exactly what kinda of problems you are having. Golden rule, divs are block elements that…
-
Centre a logo in the middle of a Menu (4 menu items) and keep it responsive?
is your logo an image? if so you can just set the background property to: background:url('image.png') no-repeat top center;
-
HTML 5 audio problems
Since you are streaming you doing this stuff back-end?
-
Please give your honest opinion about my new website
I can't web design no matter how *gorgeous* my websites look (I know you're staring with awe at this site), but I am... I can't web design??? Like everyone is saying, its a little crowded and and elements need some sort of distinc…
-
HTML 5 audio problems
Yea i believe firefox ONLY supports ogg file format. Check this out: http://slides.html5rocks.com/#video-audio
-
HTML 5 audio problems
you need to make sure you include both types of media (mp3 and ogg). I'd suggest using a plugin or something that is already designed to handle stuff like that. If you need to convert audio files, http://media.io/ is pretty good with that.