elneco
-
Change the Iframe SRC Dynamically Without Triggering the Loading Spinner
http://jsfiddle.net/GeekyJohn/GH5QG/
-
Suggestion: Product Carousel
check this one out http://dl.dropbox.com/u/2629908/sandbox/fluid-css-carousel/index.html
-
Check Session variable after every 2 sec.
function checkme(){ alert(myVariable); } setInterval(checkme, 2000);
-
help with how to save a url
try this: $(function() { $('button').click(function(){ var theUrl = document.URL; $('#myinput').val(theUrl); //uncomment the line below if you do want to submit the form right away //return false; }); });
-
Convert a Menu to Drop Down menu for small screens (problem)
do you have actual values in the href? the demo doesnt but yours should. It basically takes the href atrributes from the links and puts them into the .val() also the the selector that comes with the plug in is: $("nav a") so if your using…
-
Jquery isn't working... :( HELPPP
check your console to see if ur getting any errors. As long as you can view source and find the jquery library linked correctly, then i would suggest dropping your javascript inside a document ready. try this if ur not already: $(function(){ //your…
-
Set css animation name with Sass variable? (mixin)
nevermind...figured it out. I did this: @-webkit-keyframes #{$thename}
-
image or css ideas peoples thoughts and ideas.
will the image be static or change on hover? either way, it seems something like this is more easily accomplished with images. You can divide the image into sections and use the CSS Sprites, to change color on hover.
-
The backgroud image seems to be cut off before using display:block for the "A" tag
yeah you want display block for the styled element to take up "layout space" otherwise padding on an inline element is basically ignored in terms of spaceing. You can also try inline block.
-
The backgroud image seems to be cut off before using display:block for the "A" tag
yeah you want display block for the styled element to take up "layout space" otherwise padding on an inline element is basically ignored in terms of spaceing. You can also try inline block.
-
Input Jquery Focus On Page Load Then Do the following
Is style the sole purpose of adding the class? why dont you just apply the rules of .cfse_b to .cf-se-input:hover ?
-
What do css preprocessors do?
Its 2012 people... go with a preprocessor. evolve or get left behind. Started using SASS a couple moths ago and have not looked back.
-
Best Wordpress theme to start with
Twenty Eleven is responsive. You can take it a long way, if you know your way around wordpress.
-
rollover state button dropdow menu
http://jsfiddle.net/9MMQN/1/
-
Is this even Possible???
how crazy are you about IE support? you can use css transforms (for the rotate part) and css transitions (for a smooth rotation) mixed in with some jquery to control the changes.
-
Question About Height Property
take the float off .ipsTag_cust, and instead wrap the tags in a div and float THAT, give it a width so that it does not run into the read more button. *you will also need to clear your floats if you want the parent container to grow/expand with the…
-
Easy? Have 2 custom bullets in the same Wordpress site?
add a class to your css and give it the style you want. apply the class to whatever list you'd like. idk if that helps.. #page_content .content ul li, #page_content ul.list_two li {...} #page_content ul.list_two li {background: url("imag…
-
Getting crazy with CSS3 (CSS Ninja needed)
http://jsfiddle.net/J5jkg/2/
-
Active nav in wordpress not looking "active" on one page...
view source/ use your inspector, you'll notice the heavy use of classes used by wordpress. On line 253 of style.css - styles are set for current items in the nav(using classes generated by wp). notice the classes on the body tag on your homepa…
-
Pure css button
p's inside a button?? i like it but you should at the very least give the button element a fallback bg color.
-
Jquery drop down menu make ul stay selected
that's done with simple css: http://jsfiddle.net/F8xDT/
-
A little direction please.
yeap. try http://jquerytools.org/demos/tabs/slideshow.html for the slider. you can do away with the arrows and controls, and style the rest however you want. very flexible.
-
Slideshow problems
looks like you only need to adjust the last two numbers: slideshowFade('Slideshow1','',imgArray,20,5000); the first is the length of the transition, the second is length of the display
-
Need help with a syntax error
looking at the source, it doesnt seem like you are actually passing any options. maybe just try: $('ul.sf-menu').superfish();
-
Best way to accomplish this?
Looks like your using php, so it shouldn't be that painful to move your site over to wp. Installing is easy. For a site like this, the 5 main files you need to make a WP site are: header.php, footer.php, index.php, page.php and style.css put t…
-
On hover, show text box?
here is a starting point: http://jsfiddle.net/NngyC/