<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Enrique Delgado Monroy comments</title>
    <link>http://www.enriquedelgado.com</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Work, Life, Stuff</description>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by stakegetreala</title>
      <description>ceteHaxyteeft
&lt;a &gt;generic propecia&lt;/a rel="nofollow"&gt;
Trambarrors
&lt;a &gt;buy azithromycin on line&lt;/a rel="nofollow"&gt;
optistotfroge</description>
      <pubDate>Sun, 29 Aug 2010 12:51:35 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:51ba6b1d-ac0c-4db7-b263-955634bf4744</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-2011</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by Led Lights</title>
      <description>Nice post, but you should include the images referenced in the code. Without them you cant see the output.

Great work nonetheless, cheers:)</description>
      <pubDate>Sat, 28 Nov 2009 20:16:05 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:8363e2f4-2049-42b2-9774-6e0e226d76da</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-1065</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by afen</title>
      <description>Don't work in IE!How can I fix up&#65311;</description>
      <pubDate>Thu, 24 Sep 2009 10:23:23 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:91a518fb-e024-40b7-82fc-2d64bed6645a</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-899</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by Edward Newell</title>
      <description>Check out the examples at
&lt;a href="http://www.aldenta.com/examples/script.aculo.us/" rel="nofollow"&gt;www.aldenta.com/examples/script.aculo.us/&lt;/a&gt;

you can do all sorts of stuff with the scriptaculous slider.</description>
      <pubDate>Tue, 27 Jan 2009 12:22:16 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:24470fa0-7909-421e-89b8-72aafc189f6f</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-629</link>
    </item>
    <item>
      <title>"Enhance your JavaScript-fu with LowPro" by sohdubom</title>
      <description>::i'm not experienced with any js.frwrks, but in my search for one i saw an article with the following title: lowpro unobtrusive js for prototype, but being obtrusive or unobtrusive is up to the developer, right? or prototype makes it easier to create obtrusive code?</description>
      <pubDate>Sun, 25 Jan 2009 16:28:02 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c7431ee6-3bdc-49d3-9f91-814514f7ab7a</guid>
      <link>http://www.enriquedelgado.com/articles/2007/05/31/enhance-your-javascript-fu-with-lowpro#comment-596</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by Enrique</title>
      <description>&lt;p&gt;Note that you can also use non-anonymous functions when assigning the onChange events for your slide controls; it's just a matter of using the right syntax. From the example code in the blog post, I can rewrite:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
s1.options.onChange = function(value){
    $('height_value_1').innerHTML = value;
};
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;with:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
s1.options.onChange = myCoolFunction;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and this function:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
function myCoolFunction(foo) {
    $('height_value_1').innerHTML = foo;
}
&lt;/code&gt;&lt;/pre&gt;</description>
      <pubDate>Thu, 30 Oct 2008 00:45:26 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:699e2cf3-14db-43f1-93d3-6c99e50eae3f</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-226</link>
    </item>
    <item>
      <title>"Attaching functions to events in JavaScript: The unobstrusive way!" by Allie</title>
      <description>My bf is such a nerd... but i LOOOOOOVE him :)  </description>
      <pubDate>Fri, 24 Oct 2008 05:05:49 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:901fe213-5c4c-45b9-84d9-63f6aa691996</guid>
      <link>http://www.enriquedelgado.com/articles/2007/05/03/attaching-functions-to-events-in-javascript-the-unobstrusive-way#comment-217</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by gns100sl</title>
      <description>Here's the poor man's horizontal slider control:&lt;p&gt;&lt;p&gt;

div id="slider01" style="width:200px;height:13px;overflow:auto;" onscroll ="document.getElementById('slider01Unit').innerHTML=this.scrollLeft;"&gt; 012345678901234567890123456789012345678901234567890123456789
&lt;p&gt;/div&gt;&lt;p&gt;
div id="slider01Unit"&gt;0&lt;p&gt;/div&gt;&lt;p&gt;

No need for a Javascript library, etc.  Put the "less than sign" before all of the div /div things.  You can try to figure out what it's doing, modify for vertical usage, and scale the output.  It also needs some work for MS IE (because of the frame offset).  &lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 10 Sep 2008 15:40:48 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:0b881f0c-21df-4c58-bafe-7cff4e688fdb</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-86</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by Zheka</title>
      <description>Don't work in IE 6!</description>
      <pubDate>Thu, 31 Jul 2008 03:50:06 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:dbd635b9-6561-476a-bb4f-afb99e343e81</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-42</link>
    </item>
    <item>
      <title>"Slider Controls with Prototype and Scriptaculous" by Ibrahim</title>
      <description>Hi there,

Great stuff. Wondering if its possible to do a dual slider. i.e. a multiple handle ranged slider?

Thanks</description>
      <pubDate>Mon, 30 Jun 2008 11:20:12 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:191f7218-9277-4b67-89ae-2e08d2400ad8</guid>
      <link>http://www.enriquedelgado.com/articles/2007/12/11/html-slider-controls-with-prototype-and-scriptaculous#comment-39</link>
    </item>
  </channel>
</rss>
