<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>JavaScript Jungle - CSS-Tricks Forums</title>
      <link>http://www.css-tricks.com/forums/categories/javascript/feed.rss</link>
      <pubDate>Fri, 24 May 13 22:51:17 -0400</pubDate>
         <description>JavaScript Jungle - CSS-Tricks Forums</description>
   <language>en-CA</language>
   <atom:link href="/forums/discussions/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>What made jQuery click for you?</title>
      <link>http://www.css-tricks.com/forums/discussion/25226/what-made-jquery-click-for-you</link>
      <pubDate>Fri, 24 May 2013 19:07:35 -0400</pubDate>
      <dc:creator>eristic</dc:creator>
      <guid isPermaLink="false">25226@/forums/discussions</guid>
      <description><![CDATA[<p>I'm having a hard time with jQuery, especially when it comes to writing code intuitively. My question is this: What was the moment for you when jQuery became second nature?</p>

<p>This isn't intended to be a book/article recommendation, but those are fine if that's what made jQuery click for you.</p>

<p>Thanks in advance,</p>

<p>Scott</p>
]]></description>
   </item>
   <item>
      <title>Sticky Floating Footer Bar in Genesis WordPress theme</title>
      <link>http://www.css-tricks.com/forums/discussion/25218/sticky-floating-footer-bar-in-genesis-wordpress-theme</link>
      <pubDate>Fri, 24 May 2013 13:08:24 -0400</pubDate>
      <dc:creator>Amaryder</dc:creator>
      <guid isPermaLink="false">25218@/forums/discussions</guid>
      <description><![CDATA[<p>Hello, Currently i am using Genesis theme where i want to use sticky floating bar at footer. I tried hard but didn't well executed.</p>

<p>Please help me if anyone is good at Genesis.</p>

<p>Thanks</p>
]]></description>
   </item>
   <item>
      <title>Simple jQuery not working in wordpress</title>
      <link>http://www.css-tricks.com/forums/discussion/25215/simple-jquery-not-working-in-wordpress</link>
      <pubDate>Fri, 24 May 2013 09:28:06 -0400</pubDate>
      <dc:creator>aaronheine</dc:creator>
      <guid isPermaLink="false">25215@/forums/discussions</guid>
      <description><![CDATA[<p>I am trying to put what I built here...
<a href="http://jsfiddle.net/aaronheine/d3PnP/1/" target="_blank" rel="nofollow">http://jsfiddle.net/aaronheine/d3PnP/1/</a></p>

<p>into here...
<a href="http://www.truckshow.com/rumble/" target="_blank" rel="nofollow">http://www.truckshow.com/rumble/</a></p>

<p>Not working. I have had other jq working on the page and have tried moving it around to the header.</p>

<p>Thanks</p>
]]></description>
   </item>
   <item>
      <title>Image not showing on page load when a max-height is being assigned via jQuery</title>
      <link>http://www.css-tricks.com/forums/discussion/25213/image-not-showing-on-page-load-when-a-max-height-is-being-assigned-via-jquery</link>
      <pubDate>Fri, 24 May 2013 08:21:52 -0400</pubDate>
      <dc:creator>aaron118</dc:creator>
      <guid isPermaLink="false">25213@/forums/discussions</guid>
      <description><![CDATA[<p>I have an issue.</p>

<p>I'm using jQuery to assign a max-hight to an image. The max height value is generated by getting the height of the slideshow the logo image is next to. Please take a look at the site: <a href="http://debourg-dev.ch/lestroisverres/" target="_blank" rel="nofollow">http://debourg-dev.ch/lestroisverres/</a></p>

<p>The affected code is:</p>

<pre><code>  var sliderHeight = $('.flexslider').height();
  $('#logo img').css({'max-height': sliderHeight});

  $(window).resize(function() {

    var sliderHeight = $('.flexslider').height();
    $('#logo img').css({'max-height': sliderHeight});

  });
</code></pre>

<p>Once you start resizing the window the logo appears and scales fine as it should, so the issue looks like the script is loading before the slideshow height is determined. I've tried wrapping the affected code in a $(window).load function but it makes no difference.</p>

<p>Any help?</p>

<p>Thanks</p>
]]></description>
   </item>
   <item>
      <title>quicksearch wrong selector</title>
      <link>http://www.css-tricks.com/forums/discussion/25210/quicksearch-wrong-selector</link>
      <pubDate>Fri, 24 May 2013 07:22:16 -0400</pubDate>
      <dc:creator>dynamyc</dc:creator>
      <guid isPermaLink="false">25210@/forums/discussions</guid>
      <description><![CDATA[<p>I'm using jquery <a rel="nofollow" href="https://github.com/riklomas/quicksearch" title="">quicksearch</a> plugin to search through a list of elements but it seems that I'm not setting the correct selector.</p>

<p>The markup is like this:</p>

<pre><code>   &lt;div id="social-stream" class="dcsns"&gt;
    &lt;div class="dcsns-content"&gt;
      &lt;ul class="stream isotope"&gt;
          &lt;li&gt;

              &lt;div class="inner"&gt;
                  &lt;span class="section-thumb"&gt;&lt;/span&gt;
                  &lt;span class="section-text"&gt;5 jQuery Responsive Fullscreen Background Image Plugins | jQuery4u&lt;/span&gt;
                  &lt;span class="section-user"&gt;&lt;a href="<a href="https://www.facebook.com/DesignChemical" target="_blank" rel="nofollow">https://www.facebook.com/DesignChemical</a>"&gt;Design Chemical&lt;/a&gt;&lt;/span&gt;
              &lt;/div&gt;

       &lt;/li&gt;
     &lt;/ul&gt;

   &lt;/div&gt;
</code></pre>

<p>and the plugin :</p>

<pre><code>     $(document).ready(function () {
          $("#id_search").quicksearch("#socialstream .dcsns-content ul.stream isotope li .inner ", {
              noResults: '#noresults',
              loader: 'span.loading'
          });
      });
</code></pre>

<p>Here is a<a rel="nofollow" href="http://jsfiddle.net/dynamyc/A3q6v/" title=""> fiddle</a> example and here is the <a rel="nofollow" href="http://outboxvision.com/test/example_4.html" title="">website</a> version</p>
]]></description>
   </item>
   <item>
      <title>jQuery keypress event is not working in chrome &amp; IE browsers.</title>
      <link>http://www.css-tricks.com/forums/discussion/25208/jquery-keypress-event-is-not-working-in-chrome-ie-browsers-</link>
      <pubDate>Fri, 24 May 2013 04:42:11 -0400</pubDate>
      <dc:creator>rahuldsg</dc:creator>
      <guid isPermaLink="false">25208@/forums/discussions</guid>
      <description><![CDATA[<p>$(document).keypress(function (e) {
if( e.ctrlKey &amp;&amp; (e.which == 17 || e.which==48) ) {
  $("nav li a").css({"font-size":"16px","padding":"18px 13px 18px 13px"});
  alert("asdfasdf"); 
}</p>

<p>else if (e.ctrlKey &amp;&amp; (e.which == 17 || e.which==61) ) {</p>

<pre><code>$("nav li a").css({"font-size":"15px","padding":"18px 12px 18px 12px"}); 
</code></pre>

<p>}</p>

<p>else if (e.ctrlKey &amp;&amp; (e.which == 17 || e.which==43) ) {</p>

<pre><code>alert("ctrl+plus2");  
</code></pre>

<p>}</p>

<p>else if (e.ctrlKey &amp;&amp; (e.which == 17 || e.which==45) ) {</p>

<pre><code>alert("ctrl+minus");  
</code></pre>

<p>}</p>

<p>});</p>
]]></description>
   </item>
   <item>
      <title>anythingslider in wordpress and IE7 - object doesn&#039;t support this property or method</title>
      <link>http://www.css-tricks.com/forums/discussion/25188/anythingslider-in-wordpress-and-ie7-object-doesn039t-support-this-property-or-method</link>
      <pubDate>Thu, 23 May 2013 18:02:00 -0400</pubDate>
      <dc:creator>boblodi</dc:creator>
      <guid isPermaLink="false">25188@/forums/discussions</guid>
      <description><![CDATA[<p>Hi there - I am having a problem much like the one in this thread from 2011 - <a rel="nofollow" href="http://css-tricks.com/forums/discussion/14848/anythingslider-ie7-errors-in-video-js/p1" title="IE7 thread from 2011">http://css-tricks.com/forums/discussion/14848/anythingslider-ie7-errors-in-video-js/p1</a> - but with the wordpress AnythingSlider plugin. It's only in IE7 (rather, I have tested IE7 and IE9 - I don't have 8 running) and it comes up as soon as I click the 'next' arrow or turn on auto-play.</p>

<p>I am on board with the conditional commenting as outlined in the link above, but have no idea where/how to make that edit in wordpress since the theme my client is using doesn't seem to have a header that loads the scripts.</p>

<p>I found this in the plugin code - 
  // If video is selected, load the video extension
  if ( $video !== 'false' ) {</p>

<pre><code>  wp_enqueue_script( 'jquery.anythingslider.video', JTD_INSERTJS . '/jquery.anythingslider.video.min.js', array( 'jquery' ), '1.3b' );
  wp_enqueue_script( 'swfobject', JTD_INSERTJS . '/swfobject.js', '', '2.2' );

}
</code></pre>

<p>but I sort of don't want to try and mess with that without having more of a clue.</p>

<p>Any help appreciated. Thanks!</p>
]]></description>
   </item>
   <item>
      <title>AnythingSlider: FOUC flash of unstyled content</title>
      <link>http://www.css-tricks.com/forums/discussion/25010/anythingslider-fouc-flash-of-unstyled-content</link>
      <pubDate>Mon, 20 May 2013 04:49:30 -0400</pubDate>
      <dc:creator>ChrisMzzz</dc:creator>
      <guid isPermaLink="false">25010@/forums/discussions</guid>
      <description><![CDATA[<p>Can anyone help with my FOUC <a rel="nofollow" href="http://www.chrismoreira.co.uk/JetsetFlights/" title="here">here...</a> , i need it fixed as it doesn't look good when loading the page. The FX need to run on page load too so disabling that isn't an option. Any help would be greatly appreciated.</p>
]]></description>
   </item>
   <item>
      <title>Infinite Scroll + Waypoints</title>
      <link>http://www.css-tricks.com/forums/discussion/25177/infinite-scroll-waypoints</link>
      <pubDate>Thu, 23 May 2013 10:39:19 -0400</pubDate>
      <dc:creator>sabas</dc:creator>
      <guid isPermaLink="false">25177@/forums/discussions</guid>
      <description><![CDATA[<p>hi guys. im using infinite scroll and a waypoints function on wp theme but everytime it executes the IS scroll function to load new posts, my waypoints function breaks. is there any way to execute the waypoints function for the new posts generated by infinite scroll. here is my code:</p>

<pre><code>
(function($) {
  //Infinite Scroll + Waypoints Timeline Nav
  var infinite_scroll = {
    loading: {
      msgText: "Loading the next set of posts",
      finishedMsg: "All posts loaded"
    },
    "nextSelector":"#nav-below .nav-previous-load-more a",
    "navSelector":"#nav-below",
    "itemSelector":"article",
    "contentSelector":"#content .posts"
  };
  $( infinite_scroll.contentSelector ).infinitescroll( infinite_scroll );

 var sections = $("article");
    var navigation_links = $(".navigation-timeline a");
      sections.waypoint({
        handler: function(direction) {
        
          var active_section;
          active_section = $(this);
          if (direction === "up") active_section = active_section.prev();

          var active_link = $('.navigation-timeline a[data-anchor="' + active_section.attr("data-scroll") + '"]');
          navigation_links.removeClass("active");
          active_link.addClass("active");

        },
        offset: '5%'
      })
  })(jQuery);
</code></pre>

<p>The Doc i think you can help me with this one!
d.</p>
]]></description>
   </item>
   <item>
      <title>anythingSlider: Building a BBC-like navigation</title>
      <link>http://www.css-tricks.com/forums/discussion/22191/anythingslider-building-a-bbc-like-navigation</link>
      <pubDate>Tue, 29 Jan 2013 06:58:29 -0500</pubDate>
      <dc:creator>Pixuk</dc:creator>
      <guid isPermaLink="false">22191@/forums/discussions</guid>
      <description><![CDATA[<p>Ok, so anythingSlider is quite brilliant, and so flexible it makes me wonder why you'd even bother with the other carousels out there. But enough of the sycophancy, I have a question.</p>

<p>I'm trying to emulate the navigation of the slider seen on the BBC homepage here: <a href="http://bbc.co.uk" target="_blank" rel="nofollow">http://bbc.co.uk</a></p>

<p>I did try and fiddle with the built in navigation, and had a good poke around with navigationFormatter, but it doesn't look like that works in any way I can hook into in order to match the Auntie Beeb style.</p>

<p>So then I thought, 'ah ha!', I'll just write my own bit of script that will be triggered whenever the slide changes. And that's where I've come unstuck. How does one use the onSlideComplete callback to trigger another JS function? This is probably a newbie question for the gurus out there, but at the moment I appear to just be breaking the anythingSlider with my ham-fisted attempts to figure out the syntax.</p>

<p>Many thanks in advance for your assistance,</p>

<p>Pete</p>
]]></description>
   </item>
   <item>
      <title>prepending and appending graphics to a header using JQuery in WordPress</title>
      <link>http://www.css-tricks.com/forums/discussion/25064/prepending-and-appending-graphics-to-a-header-using-jquery-in-wordpress</link>
      <pubDate>Tue, 21 May 2013 16:26:51 -0400</pubDate>
      <dc:creator>JonathanBeech</dc:creator>
      <guid isPermaLink="false">25064@/forums/discussions</guid>
      <description><![CDATA[<p>I am currently building a WordPress theme where I am using jQuery to append and prepend some ornate images to a h4 tag with a class of beechheader in the page template markup. This idea was based on something I saw when Chris Coyier was creating the website for <a rel="nofollow" href="http://kailinyong.com/" title="">http://kailinyong.com</a></p>

<p>Before turning the static html files into a WordPress theme, the code below worked great. The code is in a separate file called test.js</p>

<p>The jQuery code appears to be enqueued correctly in the functions file and I have called the test.js code using</p>

<pre><code>/javascripts/whatever.js"&gt;
</code></pre>

<p>right before the closing body tag. Here is the code that worked fine statically but now doesnt work</p>

<pre><code> // prepend some images to the headers
$(function() {

$("h4.beechheader")
    .prepend('&lt;img src="/images/beechleft.gif" alt="" /&gt;')
    .append('&lt;img src="/images/beechright.gif" alt="" /&gt;');
});
</code></pre>

<p>I tried adding</p>

<p>&lt;?php echo get_template_directory_uri(); ?&gt;
before the trailing slash before images as you would in the html file. My research leads me to believe jQuery files may need to be handled a bit differently but I am unsure of the syntax or what to do. Can anyone help? At Stackoverflow they spoke of using the wp_localize_script but I'm very unsure of the syntax and how Chris originally did this technique when he took it to WordPress. Any ideas. Here are the Stackoverflow suggestions. <a rel="nofollow" href="http://wordpress.stackexchange.com/questions/100230/adding-the-full-image-path-to-a-wordpress-javascript-file" title="">stackoverflow question</a></p>
]]></description>
   </item>
   <item>
      <title>Select next with class</title>
      <link>http://www.css-tricks.com/forums/discussion/25161/select-next-with-class</link>
      <pubDate>Thu, 23 May 2013 05:39:54 -0400</pubDate>
      <dc:creator>XaviJr</dc:creator>
      <guid isPermaLink="false">25161@/forums/discussions</guid>
      <description><![CDATA[<p><a href="http://jsfiddle.net/Bm7mN/" target="_blank" rel="nofollow">http://jsfiddle.net/Bm7mN/</a></p>

<p>I want to select ".slide-content". I tried next(), nextAll() and now closest(). Isn't possible?</p>

<p>PS: I know I shouldn't have that extra div but I need that for other script.</p>
]]></description>
   </item>
   <item>
      <title>Anything Slider [not loading in Chrome, Safari]</title>
      <link>http://www.css-tricks.com/forums/discussion/12771/anything-slider-not-loading-in-chrome-safari</link>
      <pubDate>Tue, 12 Jul 2011 14:57:12 -0400</pubDate>
      <dc:creator>lydia</dc:creator>
      <guid isPermaLink="false">12771@/forums/discussions</guid>
      <description><![CDATA[I have implemented two sliders on a portfolio page of a Wordpress site which is in development: <a rel="nofollow" href="http://highroadsol.com/our-portfolio/">http://highroadsol.com/our-portfolio/</a><br /><br />It looks great for me in Firefox (mac) but in Chrome and Safari the slider is gone (the only thing visible is the collapsed blue border and two of the numbered tabs).<br /><br />However if I enter the site from the homepage or any other page and THEN go to the portfolio page, the slider looks fine.<br />Any ideas how to fix this?<br /><br />I have upgraded the jquery.anythingslider.js to v1.7.4<br />Running Wordpress 3.1<br /><br />Thanks!]]></description>
   </item>
   <item>
      <title>target xlink:href with jQuery?</title>
      <link>http://www.css-tricks.com/forums/discussion/25116/target-xlinkhref-with-jquery</link>
      <pubDate>Wed, 22 May 2013 18:42:34 -0400</pubDate>
      <dc:creator>scoot</dc:creator>
      <guid isPermaLink="false">25116@/forums/discussions</guid>
      <description><![CDATA[<p>Hi,</p>

<p>I'm using this code to animate scrolling on all my anchor tags:</p>

<pre><code>$('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
      || location.hostname == this.hostname) {

      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
         if (target.length) {
         $('html,body').animate({
           scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
</code></pre>

<p>The code works great but I have some links in an SVG and it's not targeting them. jQuery doesn't seem to recognize the attribute "xlink:href". Is there any way to accomplish this?</p>

<p>Thanks in advance.</p>
]]></description>
   </item>
   <item>
      <title>Help w/ Blurred Text</title>
      <link>http://www.css-tricks.com/forums/discussion/25117/help-w-blurred-text</link>
      <pubDate>Wed, 22 May 2013 21:28:16 -0400</pubDate>
      <dc:creator>errazib</dc:creator>
      <guid isPermaLink="false">25117@/forums/discussions</guid>
      <description><![CDATA[<p>I'm working with the tutorial <a rel="nofollow" href="http://css-tricks.com/fun-with-blurred-text/" title="Having fun with Blurred Text">"Having fun with Blurred Text"</a>, I've replicated the animation (the last example) and it's working as intended. However I am now trying to add an on-hover to the animation. I basically want the animation to stop on mouseover and resume on mouseout. I've never worked with pausing animations in CSS3 so I am at a loss.</p>

<p>The jsFiddle is located <a rel="nofollow" href="http://jsfiddle.net/XVBjL/" title="here">here</a>.</p>

<p>As of right now, it just keeps restarting the animation on hover. I'd like to have the dropshadow &amp; blur removed for the duration of the hover. Is using .stop() the right direction or am I totally off the mark with this? Thanks for the help! (Also love the podcast Chris &amp; Dave if you read this! )</p>

<pre><code>    $("#menu_text").mouseover(function() {
        $("#menu_text").stop()
       });

  $("#menu_text").mouseout(function() {
        // apply spans
        $("#menu_text").lettering();

        var text = $("#menu_text"),
          numLetters = text.find("span").length;

        function randomBlurize() {
        text.find("span:nth-child(" + (Math.floor(Math.random()*numLetters)+1) + ")")
          .animate({
            'textShadowBlur': Math.floor(Math.random()*10)+2,
            'textShadowColor': 'rgba(255,255,255,' + (Math.floor(Math.random()*200)+55) + ')'
          });
        // Call itself recurssively
        setTimeout(randomBlurize, 5);
        } // Call once
        randomBlurize();
  });
</code></pre>
]]></description>
   </item>
   <item>
      <title>jQuery .each() issue</title>
      <link>http://www.css-tricks.com/forums/discussion/25113/jquery-each-issue</link>
      <pubDate>Wed, 22 May 2013 17:43:51 -0400</pubDate>
      <dc:creator>martyd777</dc:creator>
      <guid isPermaLink="false">25113@/forums/discussions</guid>
      <description><![CDATA[<p>Using jQuery, I've cut off text that exceed a certain character limit, after which I've appended a link. The link opens a lightbox-type div and is SUPPOSED to load respective content within. For example, if the user clicked on the third 'See more' link, the third paragraph (just above that link) is supposed to load in the lightbox/div. Currently, the last paragraph is being loaded no matter what 'see more' link is clicked. Can anyone spot the issue in my code? Do I need to make a seperate loop, or, possibly, iterate a variable to pass the different paragraphs.</p>

<p>Code:</p>

<pre>

$(document).ready(function(){       
                
  $('.fifty p.description').each(function(i){
    
    len=$(this).text().length;
    
    var par = $(this).text();
        
    if (len&gt;215) {
          
    $(this).text($(this).text().substr(0,215)+'...').append("<a rel="nofollow" href="#more">see more</a>");
    
        $('.fifty a').click(function(){
          
        $('#more').text(par);
  
        $('#close').fadeIn();
  
        $('#more').fadeIn();
      
        });       
      
    }
    
    $().add
    
  });
        
  $('#close').click(function(){
  
  $('#close').fadeOut();
  
  $('#more').fadeOut();
    
  });
    
})


</pre>

<p>Link to live example:</p>

<p>http://www.llt-group.com/clients/estelle-international/server/rescue-skin-care-product.html</p>
]]></description>
   </item>
   <item>
      <title>Responsive Flexslider (using BackStretch.js for background images) not working</title>
      <link>http://www.css-tricks.com/forums/discussion/25102/responsive-flexslider-using-backstretch-js-for-background-images-not-working</link>
      <pubDate>Wed, 22 May 2013 11:30:32 -0400</pubDate>
      <dc:creator>yogibear123</dc:creator>
      <guid isPermaLink="false">25102@/forums/discussions</guid>
      <description><![CDATA[<p>Hi there,</p>

<p>I am creating a responsive website, you can see it here: <a href="http://www.cairngorm-holistics.co.uk/dev/index.shtml" target="_blank" rel="nofollow">http://www.cairngorm-holistics.co.uk/dev/index.shtml</a></p>

<p>I'm using Flexslider for my main slider. I'm using backstretch.js for the background images in the slider<br />
(later I hope to make two more BackStretch scripts so that smaller files can be loaded for mobile and tablet devices using something like: if ( $(window).width() &gt; 1024) {)</p>

<p>Before I implement that, the problem I'm having at the moment is that the backstretch images are not showing. The jQuery is working and kinda doing its thing, as its showing up in firebug when I inspect it so I know the js is working and putting in the extra div but the actual image isn't showing.</p>

<p>Also, inside the .li slide is a div with text. That is showing, but the absolute positioning of it is wierdly not. I wonder whether the two problems above are related.</p>

<p>Firstly and most importantly I need to sort the problem with the background image not showing, and I'd appreciated any help anyone could provide with this.</p>

<p>Thanks in advance!</p>
]]></description>
   </item>
   <item>
      <title>Re-creating a navigation. How to disable an animation when another class is added.</title>
      <link>http://www.css-tricks.com/forums/discussion/24780/re-creating-a-navigation-how-to-disable-an-animation-when-another-class-is-added-</link>
      <pubDate>Fri, 10 May 2013 02:01:51 -0400</pubDate>
      <dc:creator>attilahajzer</dc:creator>
      <guid isPermaLink="false">24780@/forums/discussions</guid>
      <description><![CDATA[<p>I'm doing my best and trying to re-create this navigation: <a href="http://www.scoopweb.com/Debridement" target="_blank" rel="nofollow">http://www.scoopweb.com/Debridement</a></p>

<p>without stealing the code.</p>

<p>So far I've got this : <a href="http://jsfiddle.net/attilahajzer/6Sxak/5/" target="_blank" rel="nofollow">http://jsfiddle.net/attilahajzer/6Sxak/5/</a></p>

<p>I've gotten to a comfortable medium. but can't seem to figure out how to disable the animation on the active class of a navigation item.</p>
]]></description>
   </item>
   <item>
      <title>Invoice Modify</title>
      <link>http://www.css-tricks.com/forums/discussion/25085/invoice-modify</link>
      <pubDate>Wed, 22 May 2013 05:07:21 -0400</pubDate>
      <dc:creator>sentrywiz</dc:creator>
      <guid isPermaLink="false">25085@/forums/discussions</guid>
      <description><![CDATA[<p><strong>Hello All</strong></p>

<p>This is my first thread, so I thank all beforehand for responding to it.</p>

<p>Yesterday I found this thread about how to make an invoice. This is incredibly powerful and just amazing how simple it is -- no software, no computer swap, no printer juggling. Nothing, just add and print or save. The thread is here:
<a rel="nofollow" href="http://css-tricks.com/html-invoice/" title="Invoice Make">Your text to link here...</a></p>

<p>As amazing as this is, I am having challenges modifying it for my company's needs. Here are the things I want to change but I am having challenge with:</p>

<ol>
<li>Don't need the dollar sign ($) - I see how great this is for users that have dollars as a currency, however I don't and I would like to remove all the dollars from the script. However when I do so, the script gets horribly disfigured and doesn't operate properly:</li>
</ol>

<ul>
<li>You can no longer edit the fields where the dollar was present</li>
<li>There is blank space in the field that cannot be removed</li>
<li>You cannot add or remove rows</li>
</ul>

<ol>
<li>Adding a "Open Invoice" script - This is what my company needs, the ability to modify upon existing invoices. Its simpler to open an invoice and change a couple of figures and/or text than completely write a new one.  If someone has a different  idea that doesn't involve saving the last invoice code as a html file because that's the only solution I can think of right now.</li>
</ol>

<p>Much appreciated. 
(p.s - I put this thread in Javascript but it can be moved anywhere)</p>
]]></description>
   </item>
   <item>
      <title>Animation on Logo</title>
      <link>http://www.css-tricks.com/forums/discussion/19923/animation-on-logo</link>
      <pubDate>Tue, 09 Oct 2012 04:06:51 -0400</pubDate>
      <dc:creator>therockstar</dc:creator>
      <guid isPermaLink="false">19923@/forums/discussions</guid>
      <description><![CDATA[<p>G'day everyone,
How's going?
I hope you all are fine.</p>

<p>how to create animation on logo like this?
<a href="http://www.sennep.com" target="_blank" rel="nofollow">http://www.sennep.com</a></p>

<p>I want to get this kind of animation on my logo.</p>

<p>Please advice.</p>

<p>Have a wonderfulday</p>
]]></description>
   </item>
   <item>
      <title>jQuery Help</title>
      <link>http://www.css-tricks.com/forums/discussion/25072/jquery-help</link>
      <pubDate>Tue, 21 May 2013 22:04:27 -0400</pubDate>
      <dc:creator>Maddtechwf</dc:creator>
      <guid isPermaLink="false">25072@/forums/discussions</guid>
      <description><![CDATA[<p>I hav the html code below that is generated by my wordpress plugin.  I want to a a ? wrapped in a hyperlink that will allow a modal popup to appear.  I would add it to my plugin code by the content is dynamically generated on a per item basis.  I want to use jQuery to do this but I can't quite seem to get it to work correctly for me.</p>

<p><a href="http://cdpn.io/ykvBr" target="_blank" rel="nofollow">http://cdpn.io/ykvBr</a></p>
]]></description>
   </item>
   <item>
      <title>How to Crop image white space automatically using jQuery?</title>
      <link>http://www.css-tricks.com/forums/discussion/25049/how-to-crop-image-white-space-automatically-using-jquery</link>
      <pubDate>Tue, 21 May 2013 09:31:19 -0400</pubDate>
      <dc:creator>rahuldsg</dc:creator>
      <guid isPermaLink="false">25049@/forums/discussions</guid>
      <description><![CDATA[<p>How to Crop image white space automatically using jQuery?</p>
]]></description>
   </item>
   <item>
      <title>Check if input value is &gt;= 8 &amp;</title>
      <link>http://www.css-tricks.com/forums/discussion/25030/check-if-input-value-is-8-</link>
      <pubDate>Mon, 20 May 2013 19:50:29 -0400</pubDate>
      <dc:creator>MattKnowsTech</dc:creator>
      <guid isPermaLink="false">25030@/forums/discussions</guid>
      <description><![CDATA[<p>Pretty sure I'm not doing this correctly:</p>

<pre><code>      if (isNaN( $("#field").val() ) &amp;&amp; val.length &gt;= min &amp;&amp; val.length &lt;= max) {
        showMessage('Your password is good!');
      }
</code></pre>

<p><a href="http://jsfiddle.net/wGVMW/" target="_blank" rel="nofollow">http://jsfiddle.net/wGVMW/</a></p>
]]></description>
   </item>
   <item>
      <title>Collapsing nav</title>
      <link>http://www.css-tricks.com/forums/discussion/25048/collapsing-nav</link>
      <pubDate>Tue, 21 May 2013 07:32:04 -0400</pubDate>
      <dc:creator>Jeager</dc:creator>
      <guid isPermaLink="false">25048@/forums/discussions</guid>
      <description><![CDATA[<p>I feel like this will be easy for anyone who knows slightly more than me.</p>

<pre><code> $("#menu-toggle").on("click", function(e) {
    e.preventDefault();
    $("body").toggleClass("show-menu");
  });
</code></pre>

<p>This currently works fine. However what it shows is the .menu ul, which I would like to do a slidedown transition, and not sure how to go about adding it.</p>

<p>Also if there is a way to remove the .show-menu when expanded back out to my break point (768px at the moment), it would be helpful to know.</p>
]]></description>
   </item>
   <item>
      <title>How to determine what js files are being used by my WP Theme, to remove useless oens</title>
      <link>http://www.css-tricks.com/forums/discussion/25028/how-to-determine-what-js-files-are-being-used-by-my-wp-theme-to-remove-useless-oens</link>
      <pubDate>Mon, 20 May 2013 18:01:10 -0400</pubDate>
      <dc:creator>mikeman</dc:creator>
      <guid isPermaLink="false">25028@/forums/discussions</guid>
      <description><![CDATA[<p>I'm using WP and WooCommerce with a theme from themeforest.</p>

<p>Over all there's quite a bit of js files being loaded, I'm trying to reduce http requests and it looks like removing some JS files would be a good start.</p>

<p>I'm also hoping that the JS files that are in-use, on specific pages.... i might be able to determine which pages and simply make some if statement to load them in the header If.... its actually needed and not just on every page.</p>

<p>Could anyone help me figure out how to do this? I'v been told to combine js files but I dont understand that, like if i just copy the contents of one js file, paste in another... then remove the old one.. things will still work? seems like i might be missing something</p>

<p>Thank you!</p>
]]></description>
   </item>
   <item>
      <title>Responsive site - mobile view bug</title>
      <link>http://www.css-tricks.com/forums/discussion/24918/responsive-site-mobile-view-bug</link>
      <pubDate>Wed, 15 May 2013 17:58:40 -0400</pubDate>
      <dc:creator>Jnice</dc:creator>
      <guid isPermaLink="false">24918@/forums/discussions</guid>
      <description><![CDATA[<p>For the mobile view, a nav menu toggles open and closed. When I toggle it closed and enlarge the browser window, the nav is hidden and I cannot get it to be visible unless I refresh the page.
I tried display: block and visibility: visible on the element, but it somehow gets overwritten.</p>

<p>I think something is missing in the main.js doc ready statement.
Codepen link: <a href="http://codepen.io/j-nice/full/BrIbA" target="_blank" rel="nofollow">http://codepen.io/j-nice/full/BrIbA</a></p>

<p>Any ideas?
Gracias.</p>
]]></description>
   </item>
   <item>
      <title>I want to replicate css-tricks mark down functionality</title>
      <link>http://www.css-tricks.com/forums/discussion/25019/i-want-to-replicate-css-tricks-mark-down-functionality</link>
      <pubDate>Mon, 20 May 2013 11:31:06 -0400</pubDate>
      <dc:creator>steven_gardner</dc:creator>
      <guid isPermaLink="false">25019@/forums/discussions</guid>
      <description><![CDATA[<p>I am building a little in-page editor for our intranet system. I need to keep things as simple as possible for the end-user and don't want a big clumsy editor toolbar.</p>

<p>I love this sites editor options "Bold, Italic, link, quote, code", and the way they work.</p>

<p>I want to build this for myself and just wondering were to get started. 
I'm using coldfusion server-side and don't have much in the way of adding new server side stuff like Pearl.</p>
]]></description>
   </item>
   <item>
      <title>Problem trying to retrieve a json object</title>
      <link>http://www.css-tricks.com/forums/discussion/24961/problem-trying-to-retrieve-a-json-object</link>
      <pubDate>Fri, 17 May 2013 11:11:32 -0400</pubDate>
      <dc:creator>steven_gardner</dc:creator>
      <guid isPermaLink="false">24961@/forums/discussions</guid>
      <description><![CDATA[<p>I'm having real trouble getting a successful response from this url.</p>

<p>I have tried a few other json urls to check my code and they work.</p>

<p>I've even run the json from my url in the <a rel="nofollow" href="http://jsonlint.com/" title="JSONLint">jsonlint</a> website and it validates fine.</p>

<p>Can anyone help me.
I've tried so many variations of things but all with the same response.</p>

<pre><code>$.getJSON( '<a href="http://arcgisweb.fife.gov.uk/Fife/Nearest/Street.asp?long=-2.8215&amp;lat=56.1904&amp;format=json&amp;jsoncallback=?'" target="_blank" rel="nofollow">http://arcgisweb.fife.gov.uk/Fife/Nearest/Street.asp?long=-2.8215&amp;lat=56.1904&amp;format=json&amp;jsoncallback=?'</a>, function(data){
        if (data.stat=='ok') {
          console.log(data);
        }else{
          console.log('boo hoo'); 
        } 
      });
</code></pre>
]]></description>
   </item>
   <item>
      <title>jQuery fadeIn text, delay, and fadeOut text bug</title>
      <link>http://www.css-tricks.com/forums/discussion/25003/jquery-fadein-text-delay-and-fadeout-text-bug</link>
      <pubDate>Sun, 19 May 2013 22:21:50 -0400</pubDate>
      <dc:creator>MattKnowsTech</dc:creator>
      <guid isPermaLink="false">25003@/forums/discussions</guid>
      <description><![CDATA[<p>Okay, so everything works the way I want it, but when you first click the button, there is no fadeIn effect to the "there is no password!" text, but there is a fadeOut, and delay effect.  But, if you click the button a second time, there is a fadeIn effect to the "there is no password!" text. I don't know why there's no fadeIn effect when you first click the button.</p>

<p><a href="http://jsfiddle.net/c9BZB/" target="_blank" rel="nofollow">http://jsfiddle.net/c9BZB/</a></p>
]]></description>
   </item>
   <item>
      <title>Selecting and updating within page?</title>
      <link>http://www.css-tricks.com/forums/discussion/24990/selecting-and-updating-within-page</link>
      <pubDate>Sun, 19 May 2013 07:24:48 -0400</pubDate>
      <dc:creator>abhaykatre</dc:creator>
      <guid isPermaLink="false">24990@/forums/discussions</guid>
      <description><![CDATA[<p><a href="http://www.audi.in/sea/brand/in/models.html" target="_blank" rel="nofollow">http://www.audi.in/sea/brand/in/models.html</a></p>

<p>In the above link, when you click on the type of car (Sedan, Coupe, SUV etc.), the page updates by showing the specific cars within its type.</p>

<p>How do I do that? Can I find a plugin somewhere?</p>
]]></description>
   </item>
   </channel>
</rss>