Rugg
-
Linking HTML pages…which method is better?
Thank you…I was confused for a moment…
-
codepen || jsfiddle || jsbin
@mottie Fiddle now supports emmet for shorthand writing code…
-
codepen || jsfiddle || jsbin
I think codepen is rich with content/pens…but I prefer the form and function of jsFiddle. I too, prefer a light UI for reading code. As for now…I'll be sticking with fiddle EDIT… I wish jsFiddle would integrate the auto-update feature…it'…
-
Why Can't We All Just Work Together on Themes!?
Completely agree with @joshwhite I'm not a huge supporter of site themes or any prefabricated design for that matter…But I do believe they serve a purpose in the industry. It's similar to the way people resort to pre-built homes in modern…
-
Password protect directory (custom login)?
Pretty much…essentialy im looking to make the login area on a designated page…independent of the standard browser login. Similar to the way wordpress admin login is
-
What Else can I do to improve webpage size/speed?
Some methods I use: 1.) Compress Javascript/CSS Try This 2.) Combine any related JS and/or CSS together to minimize requests 3.) Use sprites for UI images 4.) Strip unnecessary data from images (after PS save for web) Try This 5.) Review pa…
-
Cleaner way of writing this code?
Ok that makes sense…thanks for the help and suggestions!
-
Cleaner way of writing this code?
@thedoc One more thing actually. I noticed there is a slight difference in the output of your code…that being the initial opacity of the boxes…which begins at 50% as apposed to 100%
-
Cleaner way of writing this code?
@thedoc I was thinking that's probably what it was doing…similar to "this" with jQuery
-
Cleaner way of writing this code?
@thedoc After further inspection…I think you're right. Out of curiosity… what does the following css mean? And does it work well cross-browser? Never seen that before &.element
-
Cleaner way of writing this code?
@thedoc Interesting approach…thanks for taking a stab Below is a fiddle I created with the working example… I'm hoping to stick with the existing markup only because it uses the least amount of elements required to function properly. I'm…
-
Best techniques for image optimisation (Standard and Retina)
Also… Optimizing for High Resolution
-
Best techniques for image optimisation (Standard and Retina)
@siouxfan45 That does work. I would only use that method if you're serving a limited amount of images…otherwise your load times will suffer drastically. Have a look at the following resources for further info about this… Images on retina Re…
-
Best techniques for image optimisation (Standard and Retina)
Have a look at ImageOptim. It strips out unnecessary image data resulting in a smaller compressed file suitable for web. I typically save images for web (normal size) in PS then use ImageOptim for final production. You simply drag the intended imag…
-
I've been looking for other sites like this, are there any?
http://stackoverflow.com/
-
Animate :before pseudo class?
Hmm…I'm using Safari 6…does that work on your end? I'm thinking I'll just call the animation on a span for better compatibility…
-
ImageOptim is darkening/saturating images?
Thanks for the feedback
-
Anyone use google Closure Compiler?
Hey all… Thanks for the input! Until now I've been using a JS pack/minify plugin for coda…but it doesn't always produce the best output…which is why I began looking at closure compiler. Think I'll mix it into my workflow now.
-
Mobile swipe support for click events?
Thus far I've looked at the following plugins that can potentially accomplish the goal. I prefer a method that relies on jQuery without the additional loading of jQuery Mobile/UI. Any further suggestions or ideas? Thanks Hammer.js / touchSwip…
-
Issue with :nth-child()
@paulie_d I understand that, but I'm wondering if there is a way to exclude the first element…from the nth count? Are you aware of any methods? The only way I've solved that is simply by adding one more to the nth. For instance, .box:nth…
-
Issue with :nth-child()
@chrisP That could certainly work in some cases…however if you have a look at the example I posted…I need to be able to target specific elements with the class name 'box'. Ideally it would be nice to exclude the 'top' div from t…
-
Prevent css3 animation from returning to original state?
Yep…guess that might be the only method for now. Here is further reading on the subject for anyone interested… http://css-infos.net/property/-webkit-animation-fill-mode
-
Clear jQuery cache on page refresh?
Yea…my mistake. Apologies for the confusion.
-
Clear jQuery cache on page refresh?
This is actually standard browser behavior and not an issue with jQuery DOM cache. For anyone interested, I solved this by adding the following code to jQuery. Essentially it will reset the page/scroll position to the top after a refresh. $(documen…
-
Clear jQuery cache on page refresh?
@mottie Yes…I'm seeing the issue on your demo also. In short…when the browser is refreshed, the scroll position remains in the same spot, instead of starting at the top again. Any idea how to solve that?
-
How do I link to a PDF file?
@kmj2318 Is the PDF file on your server? If so, is the file path correct? Personally, I like to create a folder called Download and include the associated files. Using that method, your code would be as follows… Course Schedule The target="…