<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Koviko.net: The Web Development Blog - Latest Comments</title><link>http://koviko.disqus.com/</link><description></description><atom:link href="https://koviko.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Mon, 16 Feb 2015 18:57:22 -0000</lastBuildDate><item><title>Re: How to use delimiters other than ampersands in URLs</title><link>http://koviko.net/tutorial/how-to-use-delimiters-other-than-ampersands-in-urls#comment-1859007372</link><description>&lt;p&gt;It's easy to write a regex that doesn't account for question marks inside of a query string (even though it should), so that'd be the only risk with doing what you've suggested. It may also confuse visitors that want to share a URL but without a query string (they may be confused as to where the query string begins). But aside from possible errors from other people, there's nothing stopping you from doing that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Mon, 16 Feb 2015 18:57:22 -0000</pubDate></item><item><title>Re: How to use delimiters other than ampersands in URLs</title><link>http://koviko.net/tutorial/how-to-use-delimiters-other-than-ampersands-in-urls#comment-1858929300</link><description>&lt;p&gt;"...that the standards should be upheld at all times..."&lt;/p&gt;&lt;p&gt;Apparently, the ampersand is not a standard but a convention.&lt;br&gt;Which brings up a related issue, I've always been annoyed that query strings start with '?' and then use some other character '&amp;amp;' to separate parameters.  Why not just use the same character for both?&lt;/p&gt;&lt;p&gt;&lt;a href="http://foo.com?var1=this?var2=that?var3=whatever" rel="nofollow noopener" target="_blank" title="foo.com?var1=this?var2=that?var3=whatever"&gt;foo.com?var1=this?var2=that...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Is there anything that says that's not valid?  And if so, should anyone care - i.e., does that actually cause problems?&lt;/p&gt;&lt;p&gt;Every time I see or write code that says "if there's a question mark in the URL, then add &amp;amp;var=val otherwise add ?var=val" it gets on my nerves....&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bryan Lee</dc:creator><pubDate>Mon, 16 Feb 2015 17:59:07 -0000</pubDate></item><item><title>Re: Extra spacing and incorrect height on list items in Internet Explorer</title><link>http://koviko.net/tutorial/extra-spacing-and-incorrect-height-on-list-items-in-internet-explorer#comment-1014376163</link><description>&lt;p&gt;Excellent article, very helpful, thanks for sharing this :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rex</dc:creator><pubDate>Thu, 22 Aug 2013 23:25:05 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-982592508</link><description>&lt;p&gt;Hi &lt;br&gt;I did it!&lt;br&gt;In case someone will find it helpful,&lt;br&gt;am creating an array&lt;/p&gt;&lt;p&gt;prices = new Array()&lt;br&gt;$("#options option").each(function(){&lt;br&gt;    prices[$(this).val()] = $(this).attr('data-price');&lt;br&gt;})&lt;br&gt;and passing the array to your plugin&lt;br&gt;jQuery("#options").dynamicDropdown({"delimiter":" » ", "arrayPrices": prices});&lt;br&gt;then in your script adding&lt;br&gt;$('.price').html(settings.arrayPrices[$(this).val()]);&lt;/p&gt;&lt;p&gt;Great script &lt;br&gt;Thanls&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rafal</dc:creator><pubDate>Wed, 31 Jul 2013 10:30:21 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-980921144</link><description>&lt;p&gt;In the plugin's current state, it'd be difficult to make any events occur with onchange events because of how the select elements are added to and removed from the DOM. However, whenever the form is submitted, you can use the value to find the corresponding option element in the original select element (it still exists in the DOM), and then get the data-* attributes from it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Mon, 29 Jul 2013 20:56:40 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-980762693</link><description>&lt;p&gt;rafaHello, thanks for such a gret plugin.&lt;/p&gt;&lt;p&gt;Could you please point me how to get the data-price values and place it in #price (onchange event)? Thanks a lot in advance&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;select id="options"&amp;gt;&lt;br&gt;&amp;lt;option value="1" data-price="30.25"&amp;gt;Size : M » Color : White » Polo Shirt : Yes&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option value="2" data-price="20.00"&amp;gt;Size : L » Color : White » Polo Shirt : Yes&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option value="8" data-price="40.00"&amp;gt;Size : L » Color : Red » Polo Shirt : Yes&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option value="10" data-price="30.00"&amp;gt;Size : S » Color : Green » Polo Shirt : No&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option value="11" data-price="12.00"&amp;gt;Size : S » Color : Green » Polo Shirt : Yes&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;/select&amp;gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rafal</dc:creator><pubDate>Mon, 29 Jul 2013 18:43:42 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-861000310</link><description>&lt;p&gt;I did respond. Try downloading the latest version (1.0.5) from here and let me know if that solves your problem.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Fri, 12 Apr 2013 11:23:21 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-860991919</link><description>&lt;p&gt;Hi Kovik,&lt;/p&gt;&lt;p&gt;sorry to bother you again. I tried to email you, but I never got an answer. Maybe my mails got to your spam folder? Anyways, I've got a small issue once again. Would be great if you'd be able to fix this.&lt;/p&gt;&lt;p&gt;I have this job form which can be in different states. When the status of a job changes, I update the state of the job to match the status. I have the following list of states:&lt;/p&gt;&lt;p&gt;&amp;lt;option value="1"&amp;gt;Onsite work» Not started&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="2"&amp;gt;Onsite work » Finished&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="3"&amp;gt;Off-site work » Not started&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="4"&amp;gt;Off-site work » Not ready&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="5" selected="selected"&amp;gt;Off-site work » Finished&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="6"&amp;gt;Remote work » Not started&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="7"&amp;gt;Remote work » Not ready&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;option value="8"&amp;gt;Remote work » Finished&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;If I change the state to any other and update, it will work just fine. The problem comes if I don't change the state but update the form. In that case the state always changes to a Remote work (last of the first level options in the list). So if I have Off-site work » Not started selected while I update the form, it will automatically change to Remote work » Not started. If I have Onsite work » Finished selected, it will change to Remote work » Finished etc...&lt;/p&gt;&lt;p&gt;So only the first level is changed, but the second level will always stay intact. If I'd have a 3-level option selected, it wouldn't cause any problems at all. This happens only if I have a 2-level option selected with identical 2nd level item in the Remote work level.&lt;/p&gt;&lt;p&gt;Just to make things more clear: if I change the state from Off-site work » Not started to anything else and then return it back to Off-site work » Not started, it will work just swell.&lt;/p&gt;&lt;p&gt;Would you happen to have any ideas on this?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harry</dc:creator><pubDate>Fri, 12 Apr 2013 11:13:09 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-784601924</link><description>&lt;p&gt;This blog is Wordpress and it is being used here. All you have to do is include the JS file and follow the instructions written here.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Thu, 31 Jan 2013 11:00:26 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-784228547</link><description>&lt;p&gt;Hi, I want something silimar for wordpress, can you develop one? or is it anyway to use this one in wordpress? Please reply&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nizam Kazi</dc:creator><pubDate>Thu, 31 Jan 2013 03:19:10 -0000</pubDate></item><item><title>Re: Using query strings in CodeIgniter</title><link>http://koviko.net/using-query-strings-in-codeigniter#comment-774551766</link><description>&lt;p&gt;than how to pass values in hreaf link?&lt;br&gt;like m using bla/bla/bla.php?id=43&lt;br&gt;where id coming dynamicly&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nikz</dc:creator><pubDate>Tue, 22 Jan 2013 01:16:57 -0000</pubDate></item><item><title>Re: Find &amp;#038; Replace in MySQL</title><link>http://koviko.net/find-replace-in-mysql#comment-747606040</link><description>&lt;p&gt;Yet I have not found any path that can deal with this in an easy and simple way. This is the only logic to which I think of to import my old application to new one.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Benjamin Rosa</dc:creator><pubDate>Wed, 26 Dec 2012 00:30:01 -0000</pubDate></item><item><title>Re: X-Cart 4.3 to 4.4</title><link>http://koviko.net/x-cart-4-3-to-4-4#comment-743430401</link><description>&lt;p&gt;This is made clear by the inability to simply browse products without filtering them, first. &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jelani Barron</dc:creator><pubDate>Thu, 20 Dec 2012 03:45:51 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-743179782</link><description>&lt;p&gt;Wonderful, thanks a bunch!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harry</dc:creator><pubDate>Wed, 19 Dec 2012 18:53:53 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-743134121</link><description>&lt;p&gt;Ah, you're right. I never built in the final selection code. It is now added in and uploaded here as v1.0.2. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Wed, 19 Dec 2012 17:34:24 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-743091863</link><description>&lt;p&gt;Hi Kovik,&lt;/p&gt;&lt;p&gt;thank you once again! Unfortunately this didn't fully fix it. Now the initial selection stays in the first option of the second level of the selected branch.&lt;/p&gt;&lt;p&gt;To make it more clear:&lt;/p&gt;&lt;p&gt;&amp;lt;option&amp;gt;Computers » Lenovo&amp;lt;/option&amp;gt;&amp;lt;option&amp;gt;Computers » HP&amp;lt;/option&amp;gt;&amp;lt;option&amp;gt;Cars » Smart » 402&amp;lt;/option&amp;gt;&amp;lt;option&amp;gt;Cars » BMW » 320&amp;lt;/option&amp;gt;&amp;lt;option&amp;gt;Cars » BMW » 420&amp;lt;/option&amp;gt;&amp;lt;option selected="selected"&amp;gt;Cars » BMW » 520&amp;lt;/option&amp;gt;&lt;br&gt;would result in "Cars » BMW » 320" to initially selected (because 320 is the first leaf of the "Cars » BMW" branch.&lt;/p&gt;&lt;p&gt;I still respect your work greatly, so I already made a small donation and hope you'd have the time to fix this last bug. :)&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harry</dc:creator><pubDate>Wed, 19 Dec 2012 16:45:15 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-743012935</link><description>&lt;p&gt;That certainly is a bug, one resulting from a lovely copy-paste typo. The culprit is on line 140. Change "buildDynamicDropdown" to "initializeDynamicDropdown". I'll upload the fix to this server, shortly.&lt;/p&gt;&lt;p&gt;As for your offer of a donation, it is certainly appreciated. The email in the JS file is now capable of accepting PayPal donations. Thank you. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Wed, 19 Dec 2012 15:08:48 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-742596097</link><description>&lt;p&gt;Hi again,&lt;/p&gt;&lt;p&gt;I've been testing the plugin since yesterday and I've stumbled in a weird bug. Since I'm really bad with Javascript, I couldn't pinpoint the reason for this problem. Would you have any quick fix for this?:&lt;/p&gt;&lt;p&gt;When I use the "selected" attribute as an initial value, only the first option from the same root level gets selected. To make this more clear:&lt;/p&gt;&lt;p&gt;&amp;lt;option&amp;gt;Computers » Lenovo&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option&amp;gt;Computers » HP&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option&amp;gt;Cars » BMW » 320&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option&amp;gt;Cars » BMW » 420&amp;lt;/option&amp;gt;&lt;br&gt;&amp;lt;option selected="selected"&amp;gt;Cars » Smart » 402&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;Would actually show "Cars » BMW » 320" as the initial value because it's the first option of the Cars root. &lt;/p&gt;&lt;p&gt;I also tried a modified version of this by Andrew Smiley, but that had some other bugs which might take even more time to fix.&lt;/p&gt;&lt;p&gt;Sorry to bother you about this, but I would greatly appreciate this fix, since it's crucial for my upcoming site. I've tried the production and development versions. Both have the same bug. I'm also willing to donate some money for this fix, in case you have a PayPal account for donations.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harry</dc:creator><pubDate>Wed, 19 Dec 2012 06:18:56 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-741827587</link><description>&lt;p&gt;Glad to see people are still getting use out of this. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Tue, 18 Dec 2012 11:19:08 -0000</pubDate></item><item><title>Re: Building an accessible, client-side chained selection drop down</title><link>http://koviko.net/tutorial/building-an-accessible-client-side-chained-selection-drop-down#comment-741694774</link><description>&lt;p&gt;Hi Kovik, thanks for the great plugin!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harry</dc:creator><pubDate>Tue, 18 Dec 2012 09:17:08 -0000</pubDate></item><item><title>Re: Using query strings in CodeIgniter</title><link>http://koviko.net/using-query-strings-in-codeigniter#comment-691766714</link><description>&lt;p&gt;CodeIgniter is a fantastic framework for PHP development, and aspect of it’s success is in it’s URL Schema.  The URL Schema take a lot of getting used to, especially when you want to achieve thing that, while simple before, become more challenging using CodeIgniter. One of these thing is the use of query String. By standard, CodeIgniter may neglect your query String.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Abel Mcknight</dc:creator><pubDate>Thu, 25 Oct 2012 01:55:44 -0000</pubDate></item><item><title>Re: Hello there, world!</title><link>http://koviko.net/hello-world#comment-551746759</link><description>&lt;p&gt; I was very pleased to find this web-site. I wanted to thanks for your time for this wonderful read!! I definitely enjoying every little bit of it and I have you bookmarked to check out new stuff you blog post.&lt;br&gt; &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Paul Payne</dc:creator><pubDate>Fri, 08 Jun 2012 08:11:57 -0000</pubDate></item><item><title>Re: Extra spacing and incorrect height on list items in Internet Explorer</title><link>http://koviko.net/tutorial/extra-spacing-and-incorrect-height-on-list-items-in-internet-explorer#comment-509763129</link><description>&lt;p&gt;Thank U So much&lt;br&gt; &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Test</dc:creator><pubDate>Thu, 26 Apr 2012 10:35:19 -0000</pubDate></item><item><title>Re: X-Cart 4.3 to 4.4</title><link>http://koviko.net/x-cart-4-3-to-4-4#comment-359887630</link><description>&lt;p&gt;oh new version ..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lee Corbet</dc:creator><pubDate>Thu, 10 Nov 2011 03:11:21 -0000</pubDate></item><item><title>Re: Extra spacing and incorrect height on list items in Internet Explorer</title><link>http://koviko.net/tutorial/extra-spacing-and-incorrect-height-on-list-items-in-internet-explorer#comment-357809490</link><description>&lt;p&gt;It's a shame that our expertise needs to extend to the taming of one particular browser. But, at this point, every browser has it's own CSS flaws and none are nearly as easy to target as IE is.&lt;/p&gt;&lt;p&gt;In any case, I'm glad that this has helped someone. This poor blog is soon to be demolished, so it's good that the information made it out before then. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Koviko</dc:creator><pubDate>Mon, 07 Nov 2011 15:41:56 -0000</pubDate></item></channel></rss>