Mottie
-
Compass/Sass on Windows
@Subash! I've already found one minor problem with markdown compiling... I include anchor tags (text) within my markdown, and the compiler translates that into <a name="anchor">text</a>. I didn…
-
gif tansparency
To me it sounds like you need to set the transparent bit of your image in the editor. I'm not sure what program you are using, but most allow you to pick a color bit to make transparent when you save the gif. If you are setting the bit, then y…
-
Content sliding off page when adjusting browser
Wow! Can you make that woman any larger? o.O To which column are you referring?
-
JAVASCRIPT HELP PLEASE WITH... Revealing Photo Slider with jQuery by CSS-Tricks!!!
I think the problem is that the "photorevealer.js" script is the same thing and interfering with the script already in the page... Anyway, I emailed you an updated demo :)
-
Almost there with Git - deployment question
@Senff That's what the jQuery team did with Github, Wordpress and their site. It's all integrated together.
-
Menu placement opinions
Menu placement at the bottom? I've already read that article, now I have to scroll down every time I visit.
-
Jquery Cycle plugin rotating youtube videos and it's not displaying correctly in SAFARI
@godoy I don't think so, I've had this same issue with AnythingSlider for a while; but I won't have to worry about it much longer since Apple is dropping Windows support (i.e. I refuse to buy a mac just to test my code in Safari).
-
how can i add snippets to Zen coding ... ?
Actually it looks like you just need to add/modify the snippets.json file - http://docs.emmet.io/customization/snippets/
-
Decimal precision in calculating EM values
I don't know much on this subject, but with a little research I found this reference on the webkit LayoutUnit that states they set their browsers to multiples of 1/64th pixel, whereas Mozilla uses 1/60th pixel precision. That page shows how the…
-
JQuery Slidedown and Up
Did you try changing the stop function parameters .stop( [clearQueue ] [, jumpToEnd ] ) (ref)? Maybe try .stop(true, false) and see if that does what you want.
-
Css doesn't apply to content with jQuery $.ajax
@arkader I see a "style.css" file at the very bottom of the page, try moving it to the top of the document (in the head).
-
Badges in jQuery/JavaScript
Badges? We don't need no stickin' badges! joking aside, maybe check out this plugin
-
How to create editable block content in Wordpress theme without using a plugins
Well, a basic content editable block does nothing but trigger focus and blur events and allow the user to type in and change a block of content; but you will need to write any code, much like an input, to make the block interactive. This code will p…
-
Anything slider not working on wordpress
@ghafirsayed For future reference, the document shouldn't have been inside of quotes: $(document).ready(function(){ ... }); the format you ended up using works best when it is at the bottom of the page.
-
Can you suggest a free youtube player?
Maybe this plugin? I found this second one, but the playlist doesn't seem to work for me.
-
eCommerce - Shopping-cart-dropdown bug - Rebinding after "Add to cart" fails
Hi LimeX! I tried out the shopping cart, but I never saw the dropdown that you mentioned. But, from reading your description, it's not the best idea to rely on a timer function like that. If you have a dropdown with dynamically added/removed …
-
Typography Category
LOL I like Daniel's choices for categories :P So, as you can tell, I think two categories would be better :)
-
JAVASCRIPT HELP PLEASE WITH... Revealing Photo Slider with jQuery by CSS-Tricks!!!
Hi @webmana! The code from this post didn't seem to work right for the last two images, so I copied the code from the actual demo. All I added was this line inside the function that expanded the photo: $this.closest('td').siblin…
-
Anything Slider: Issues When Dynamically Modifying Options
@wis Ok, this might take me a while to do, but I think I'll go this route: 1) All build options (buildArrows, buildNavigation & buildStartStop) are only going to work on initialization. It just adds too much code to check if something is …
-
Anything Slider: Issues When Dynamically Modifying Options
@wis Thanks for the detailed information! I'll try to spend some time tomorrow looking more closely at this.
-
Anything slider
@tejdeepquest: You can use the clickControls option and set it to use both mouseenter and mousemove because when the slider is animating, it will ignore all requests to change the slider to another panel. Check out this demo. $('#slider')…
-
Table Row and Column Highlighting on multiple tables
Hi @hellsing! Try this code (demo): $(function () { $('table').each(function () { var $table = $(this).delegate('td', 'mouseover mouseleave', function (e) { if (e.type == 'mouseover')…
-
Anything Slider: Issues When Dynamically Modifying Options
Sorry, I think I spend more time writing documentation than I do working on code. So, I'm sure I missed a few things, there is no way to unit test documentation ;) LOL I wouldn't mind some help with the docs either, it's all wiki. Or…
-
Anything Slider: Issues When Dynamically Modifying Options
Hi @wis! Well, the updateSlider() function really only adds/removes slider panels and updates the navigation. I wasn't expecting anyone to want to change all of the options, although I'm sure there are a few options that are checked dynam…
-
Anything Slider: Issues When Dynamically Modifying Options
Hi @wis! Yeah the building and enabling of the arrows is one of the functions that is only done during the initialization. I didn't include it in the update because it would then have to remove the arrows if they were already there - which isn…
-
Anyone use google Closure Compiler?
I use it all the time to make minified versions of my plugins. It is my favorite online compiler and it seems to produce the smallest code. The only time I ever had it fail was when I was trying to minify the original tablesorter code which uses eva…
-
AnythingSlider: add "internal" captions
Hi! I just checked your site and it looks like you've solved it, right?
-
AnythingSlider: add "internal" captions
Set the FX extension's stopRepeat option to true
-
AnythingSlider: add "internal" captions
If you look at the third demo on this page, it shows you the HTML and code you need to use to add captions. There are also numerous other demos you can copy on the main wiki documentation page, as well as detailed documentation on how to use and ap…
-
AnythingSlider: parameter on function to call plugin
The code you are seeing: var changeToSlide = 6; jQuery('.anythingSlider').anythingSlider(changeToSlide); is how to change the slide AFTER Anything has initialized. So, if you add a button (or link, or whatever) to your page and add …