<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>dragsort Discussions Rss Feed</title><link>http://dragsort.codeplex.com/Thread/List.aspx</link><description>dragsort Discussions Rss Description</description><item><title>New Post: Can I order rows and columns ?</title><link>http://dragsort.codeplex.com/discussions/446567</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br /&gt;
&lt;br /&gt;
is it possible to use DragSort on a table and enable drag and drop on rows but also on columns ?&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>kapocris</author><pubDate>Mon, 10 Jun 2013 14:17:44 GMT</pubDate><guid isPermaLink="false">New Post: Can I order rows and columns ? 20130610021744P</guid></item><item><title>New Post: Dynamic connected lists</title><link>http://dragsort.codeplex.com/discussions/443822</link><description>&lt;div style="line-height: normal;"&gt;I need to add an additional list to a page via javascript and have the new list linked with the other existing lists to enable dragging/dropping from those other lists to the new list. Obviously just adding a new UL with the respective class doesn't work since 'dragsort' already fired on page load. I tried using 'destroy' and then re-initing dragsort after the new element has been added, but that seems to mess up everything. Is there a way to re-init dragsort after a new element has been added so that it works with the existing lists?&lt;br /&gt;
&lt;/div&gt;</description><author>mdewyer</author><pubDate>Wed, 15 May 2013 23:58:11 GMT</pubDate><guid isPermaLink="false">New Post: Dynamic connected lists 20130515115811P</guid></item><item><title>New Post: Save order in Mysql </title><link>http://dragsort.codeplex.com/discussions/442766</link><description>&lt;div style="line-height: normal;"&gt;Hi all,&lt;br /&gt;
   Please give me some idea to &amp;quot;How to save sort order&amp;quot; and show list item according to sort order.&lt;br /&gt;
&lt;/div&gt;</description><author>ramkumarsabita</author><pubDate>Tue, 07 May 2013 06:39:38 GMT</pubDate><guid isPermaLink="false">New Post: Save order in Mysql  20130507063938A</guid></item><item><title>New Post: asp.net c# Binding problem</title><link>http://dragsort.codeplex.com/discussions/438191</link><description>&lt;div style="line-height: normal;"&gt;In the example for c #&lt;br /&gt;
Gallery as it is defined?&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    if (!IsPostBack)
    {
        Gallery.DataSource = new string[] { &amp;quot;blue&amp;quot;, &amp;quot;orange&amp;quot;, &amp;quot;brown&amp;quot;, &amp;quot;red&amp;quot;, &amp;quot;yellow&amp;quot;, &amp;quot;green&amp;quot;, &amp;quot;black&amp;quot;, &amp;quot;white&amp;quot;, &amp;quot;purple&amp;quot; };
        Gallery.DataBind();
    }
&lt;/code&gt;&lt;/pre&gt;

Thanks!!&lt;br /&gt;
&lt;/div&gt;</description><author>simo88fano</author><pubDate>Wed, 27 Mar 2013 16:10:48 GMT</pubDate><guid isPermaLink="false">New Post: asp.net c# Binding problem 20130327041048P</guid></item><item><title>New Post:  jQuery List DragSort</title><link>http://dragsort.codeplex.com/discussions/437990</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
Is it possible to manage (remember) the current position of each widget while sorting the widgets.&lt;br /&gt;
I want it to maintain position of widget through out the session along with newly log-in.&lt;br /&gt;
&lt;br /&gt;
I am waiting for your answer.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Nishigandha&lt;br /&gt;
&lt;/div&gt;</description><author>nishigandha</author><pubDate>Tue, 26 Mar 2013 07:53:16 GMT</pubDate><guid isPermaLink="false">New Post:  jQuery List DragSort 20130326075316A</guid></item><item><title>New Post: Save order in Mysql</title><link>http://dragsort.codeplex.com/discussions/350801</link><description>&lt;div style="line-height: normal;"&gt;Hi, &lt;br /&gt;
&lt;br /&gt;
I continue this post because its a similar problem.&lt;br /&gt;
&lt;br /&gt;
First, great script. Work great. &lt;br /&gt;
The problem is that I just cant understand how to save the reordered list.&lt;br /&gt;
&lt;br /&gt;
I have a mysql table to order an image gallery. this is the structure after uploading the files:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;ID  ORDEN   LINK
1   1           1_MG_8870.jpg           
2   2           0_MG_9260.jpg           
3   3           1_MG_9335.jpg           
4   4           2_MG_9337.jpg           
&lt;/code&gt;&lt;/pre&gt;

Since I want to be able to change the order I'm using this script&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;ul id=&amp;quot;list1&amp;quot;&amp;gt;
&amp;lt;?
                            
                                while($articulo=mysql_fetch_array($resultados)) {
                                                
            echo '&amp;lt;li data-itemid=&amp;quot;'.$articulo[&amp;quot;ORDEN&amp;quot;].'&amp;quot;&amp;gt;&amp;lt;div&amp;gt;&amp;lt;img src=&amp;quot;multi/'.$articulo[&amp;quot;LINK&amp;quot;].'&amp;quot; width=&amp;quot;120&amp;quot; height=&amp;quot;120&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/li&amp;gt;';
            }
    ?&amp;gt;
    
    &amp;lt;/ul&amp;gt;
&amp;lt;input name=&amp;quot;list1SortOrder&amp;quot; type=&amp;quot;text&amp;quot; size=&amp;quot;244&amp;quot; /&amp;gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
        $(&amp;quot;#list1&amp;quot;).dragsort({ dragSelector: &amp;quot;div&amp;quot;, dragEnd: saveOrder, placeHolderTemplate: &amp;quot;&amp;lt;li class='placeHolder'&amp;gt;&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/li&amp;gt;&amp;quot; });

           function saveOrder() {
            var data = $(&amp;quot;#list1 li&amp;quot;).map(function() { return $(this).data(&amp;quot;itemid&amp;quot;); }).get();
            $(&amp;quot;input[name=list1SortOrder]&amp;quot;).val(data.join(&amp;quot;|&amp;quot;));
            $.post(&amp;quot;fotoalbum.php&amp;quot;, { &amp;quot;ids&amp;quot;: data });
        };
    &amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/pre&gt;

I set the input to be visible and reflect the change every time I drag&amp;amp;drop a picture (ej: 0|1|2|3|4 and changing... ), but I'm not being able to insert this new order to de database.&lt;br /&gt;
&lt;br /&gt;
Sorry if its too dumb the problem.....&lt;br /&gt;
&lt;br /&gt;
THAnks!&lt;br /&gt;
&lt;/div&gt;</description><author>Pzotalis</author><pubDate>Sat, 16 Mar 2013 00:35:29 GMT</pubDate><guid isPermaLink="false">New Post: Save order in Mysql 20130316123529A</guid></item><item><title>New Post: Reorder table rows</title><link>http://dragsort.codeplex.com/discussions/433379</link><description>&lt;div style="line-height: normal;"&gt;I've looked at the code and modifying it doesn't seem to be so easy as I wold have hoped.&lt;br /&gt;
&lt;br /&gt;
Here is more or less what I have:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;quot;#dragsort tbody&amp;quot;).dragsort({ dragBetween: true });

&amp;lt;div style='position: absolute; left: 100px; top: 100px; right: 100px; bottom: 100px; overflow: auto' id='container'&amp;gt;
&amp;lt;table id='dragsort'&amp;gt;
&amp;lt;thead&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;...&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;/thead&amp;gt;
&amp;lt;tbody&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Enough rows to make the table higher than the container&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Enough rows to make the table higher than the container&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Enough rows to make the table higher than the container&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;/tbody&amp;gt;
&amp;lt;/table&amp;gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;

Reordering only works properly when the container div is scrolled all the way up. If it has been scrolled 100px down, then the element being dragged is offset up by 100px.&lt;br /&gt;
&lt;br /&gt;
I also tried this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;quot;#dragsort tbody&amp;quot;).dragsort({ dragBetween: true, scrollContainer: &amp;quot;#container&amp;quot; });&lt;/code&gt;&lt;/pre&gt;

But scrollContainer doesn't seem to be doing anything or maybe I just don't understand how to use it properly.&lt;br /&gt;
&lt;/div&gt;</description><author>jniemi</author><pubDate>Wed, 20 Feb 2013 10:47:55 GMT</pubDate><guid isPermaLink="false">New Post: Reorder table rows 20130220104755A</guid></item><item><title>New Post: Reorder table rows</title><link>http://dragsort.codeplex.com/discussions/433379</link><description>&lt;div style="line-height: normal;"&gt;I got the code from the &amp;quot;SOURCE CODE&amp;quot; tab and it's working great.&lt;br /&gt;
&lt;br /&gt;
One small problem still exists though.&lt;br /&gt;
&lt;br /&gt;
My table is inside a div which has overflow: auto. The table is higher than the available height, so there's a scrollbar to scroll the div up and down. The placement of the row being dragged is displaced if the div has been scrolled down. I can probably modify the code to take the parents scrollHeight into consideration, but just so you know in case you want to fix it.&lt;br /&gt;
&lt;/div&gt;</description><author>jniemi</author><pubDate>Tue, 19 Feb 2013 14:46:09 GMT</pubDate><guid isPermaLink="false">New Post: Reorder table rows 20130219024609P</guid></item><item><title>New Post: Hi how can I dragsort stop and start?</title><link>http://dragsort.codeplex.com/discussions/433618</link><description>&lt;div style="line-height: normal;"&gt;Thank you so much Mcm_ham.&lt;br /&gt;
&lt;/div&gt;</description><author>llorca</author><pubDate>Tue, 19 Feb 2013 12:13:57 GMT</pubDate><guid isPermaLink="false">New Post: Hi how can I dragsort stop and start? 20130219121357P</guid></item><item><title>New Post: Link in a list</title><link>http://dragsort.codeplex.com/discussions/398993</link><description>&lt;div style="line-height: normal;"&gt;I'm just trying with Chrome v24.0.1312.57 on windows and it works, so I can look for v22 to test. But what's the CSS for the hyperlink, is it display block with height and width set?&lt;br /&gt;
&lt;/div&gt;</description><author>mcm_ham</author><pubDate>Tue, 19 Feb 2013 10:13:27 GMT</pubDate><guid isPermaLink="false">New Post: Link in a list 20130219101327A</guid></item><item><title>New Post: sorting lists with text box inputs</title><link>http://dragsort.codeplex.com/discussions/429571</link><description>&lt;div style="line-height: normal;"&gt;If the jquery.dragsort.js file in the grabItem function, if you remove &amp;quot;e.preventDefault();&amp;quot; then you will be able to click into a textbox to enter text.&lt;br /&gt;
&lt;/div&gt;</description><author>mcm_ham</author><pubDate>Tue, 19 Feb 2013 10:06:35 GMT</pubDate><guid isPermaLink="false">New Post: sorting lists with text box inputs 20130219100635A</guid></item><item><title>New Post: Reorder table rows</title><link>http://dragsort.codeplex.com/discussions/433379</link><description>&lt;div style="line-height: normal;"&gt;Thank you for the reply.&lt;br /&gt;
&lt;br /&gt;
I am using jquery.dragsort-0.5.1.js from the download page. It seems there are some discrepancy in the versioning, because the source code on the &amp;quot;SOURCE CODE&amp;quot;-tab looks a lot different.&lt;br /&gt;
&lt;br /&gt;
Where can I get the newest version? Do you recommend getting the code from the &amp;quot;SOURCE CODE&amp;quot;-tab?&lt;br /&gt;
&lt;/div&gt;</description><author>jniemi</author><pubDate>Tue, 19 Feb 2013 08:09:07 GMT</pubDate><guid isPermaLink="false">New Post: Reorder table rows 20130219080907A</guid></item><item><title>New Post: Reorder table rows</title><link>http://dragsort.codeplex.com/discussions/433379</link><description>&lt;div style="line-height: normal;"&gt;&lt;pre&gt;&lt;code&gt;$(e.target).closest(opts.itemSelector).size() == 0)&lt;/code&gt;&lt;/pre&gt;

I can't find this in the dragsort code, what version are you using?&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;var dragHandle = e.target;
while (!$(dragHandle).is(opts.dragSelector)) {
    if (dragHandle == this) return;
    dragHandle = dragHandle.parentNode;
}&lt;/code&gt;&lt;/pre&gt;

The idea behind this code is that the element you clicked i.e. &amp;quot;e.target&amp;quot; could be inside the element acting as the drag handle e.g. you clicked a div inside a table cell. So I keep going up the tree until it matches the dragSelector. The variable &amp;quot;this&amp;quot; is the list container in this case &amp;quot;tbody&amp;quot; so if we go up that far it means no dragHandle was found and should mean we didn't click on it so return from the method. So what's failing is &lt;em&gt;$(td).is(&amp;quot;td:eq(0)&amp;quot;)&lt;/em&gt; in the while condition. My suggestion would be to do this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;quot;#mytableid td:eq(0)&amp;quot;).addClass(&amp;quot;dragHandle&amp;quot;);
$(&amp;quot;#mytableid tbody&amp;quot;).dragsort({ dragBetween: true, dragSelector: &amp;quot;.dragHandle&amp;quot; }); &lt;/code&gt;&lt;/pre&gt;

Then it will be &lt;em&gt;$(td).is(&amp;quot;.dragHandle&amp;quot;)&lt;/em&gt; in the while condition and that should definitely match the first table cell.&lt;br /&gt;
&lt;/div&gt;</description><author>mcm_ham</author><pubDate>Tue, 19 Feb 2013 07:44:03 GMT</pubDate><guid isPermaLink="false">New Post: Reorder table rows 20130219074403A</guid></item><item><title>New Post: Hi how can I dragsort stop and start?</title><link>http://dragsort.codeplex.com/discussions/433618</link><description>&lt;div style="line-height: normal;"&gt;Basically like this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;function enableDragsort()
{
    $(&amp;quot;ul&amp;quot;).dragsort({ dragSelector: &amp;quot;li&amp;quot;, dragEnd: function() { }, dragBetween: false, placeHolderTemplate: &amp;quot;&amp;lt;li&amp;gt;&amp;lt;/li&amp;gt;&amp;quot; });
}

function disableDragsort()
{
    $(&amp;quot;ul&amp;quot;).dragsort(&amp;quot;destroy&amp;quot;);
}&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>mcm_ham</author><pubDate>Tue, 19 Feb 2013 06:50:26 GMT</pubDate><guid isPermaLink="false">New Post: Hi how can I dragsort stop and start? 20130219065026A</guid></item><item><title>New Post: Hi how can I dragsort stop and start?</title><link>http://dragsort.codeplex.com/discussions/433618</link><description>&lt;div style="line-height: normal;"&gt;&lt;blockquote&gt;
Hi how can I dragsort stop and start? Or disable and enable? Thank you from Turkey.&lt;br /&gt;
&lt;/blockquote&gt;
-llorca&lt;br /&gt;
&lt;/div&gt;</description><author>mcm_ham</author><pubDate>Tue, 19 Feb 2013 06:49:19 GMT</pubDate><guid isPermaLink="false">New Post: Hi how can I dragsort stop and start? 20130219064919A</guid></item><item><title>New Post: Reorder table rows</title><link>http://dragsort.codeplex.com/discussions/433379</link><description>&lt;div style="line-height: normal;"&gt;Hello&lt;br /&gt;
&lt;br /&gt;
Thanks for a nice plugin.&lt;br /&gt;
&lt;br /&gt;
I am having problems reordering table rows. Everything works OK if I target the table without any extra parameters, like so:&lt;br /&gt;
&lt;br /&gt;
$(&amp;quot;#mytableid&amp;quot;).dragsort({ dragBetween: true });&lt;br /&gt;
&lt;br /&gt;
However in my table the first row is the header and I want to exclude it, so I try:&lt;br /&gt;
&lt;br /&gt;
$(&amp;quot;#mytableid&amp;quot;).dragsort({ dragBetween: true, itemSelector: &amp;quot;tr:gt(0)&amp;quot; });&lt;br /&gt;
&lt;br /&gt;
But that doesn't work because the check on row number 117 is returning true:&lt;br /&gt;
&lt;br /&gt;
$(e.target).closest(opts.itemSelector).size() == 0)&lt;br /&gt;
&lt;br /&gt;
After this I modified my table somewhat - I added thead, tbody and tfoot elements there and targeted tbody:&lt;br /&gt;
&lt;br /&gt;
$(&amp;quot;#mytableid tbody&amp;quot;).dragsort({ dragBetween: true });&lt;br /&gt;
&lt;br /&gt;
This works, but then I want to specify the cell used in dragging the rows:&lt;br /&gt;
&lt;br /&gt;
$(&amp;quot;#mytableid tbody&amp;quot;).dragsort({ dragBetween: true, dragSelector: &amp;quot;td:eq(0)&amp;quot; });&lt;br /&gt;
&lt;br /&gt;
And again reordering doesnt work anymore. This time I believe it's failing on this row:&lt;br /&gt;
&lt;br /&gt;
if (dragHandle == this) return;&lt;br /&gt;
&lt;br /&gt;
So - any examples on how to reorder table rows while excluding the first row and specifying the dragSelector-cell?&lt;br /&gt;
&lt;/div&gt;</description><author>jniemi</author><pubDate>Sat, 16 Feb 2013 18:34:44 GMT</pubDate><guid isPermaLink="false">New Post: Reorder table rows 20130216063444P</guid></item><item><title>New Post: sorting lists with text box inputs</title><link>http://dragsort.codeplex.com/discussions/429571</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi mcm,&lt;/p&gt;
&lt;p&gt;Great plug-in! &amp;nbsp;I am trying to sort a list with text box inputs. I have successfully included the text boxes by setting&amp;nbsp;dragSelectorExclude to an empty string. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;But when you click on a text box, the plug-in won't allow you to enter text in the box - it just assumes you want to drag. Is there a way to set the plugin to check for a single click, give focus to the text box, and temporarily turn off the dragging action?
 &amp;nbsp;That way the text box could still be used to enter text. On mousedown, it would resume the dragging action.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for your help mcm.&lt;/p&gt;
&lt;/div&gt;</description><author>tbarmann</author><pubDate>Mon, 14 Jan 2013 16:59:16 GMT</pubDate><guid isPermaLink="false">New Post: sorting lists with text box inputs 20130114045916P</guid></item><item><title>New Post: Link in a list</title><link>http://dragsort.codeplex.com/discussions/398993</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;anybody ?&lt;/p&gt;&lt;/div&gt;</description><author>aschutz</author><pubDate>Thu, 25 Oct 2012 12:17:54 GMT</pubDate><guid isPermaLink="false">New Post: Link in a list 20121025121754P</guid></item><item><title>New Post: Is it possible to use it on touch devices like ipad or iphone?</title><link>http://dragsort.codeplex.com/discussions/391116</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;My gut would guide me to a lightweight mobile-only standalone&amp;nbsp;library&amp;nbsp;like QuoJS or HammerJS which at first glance seem to have minimum conflict with jQuery/UI and the amazing DragSort library.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also look into HTML5 Libraries that offer drag/drop like&amp;nbsp;&lt;a href="http://kineticjs.com/"&gt;http://kineticjs.com/&lt;/a&gt;&amp;nbsp;- although you'd have to most likely re-write your app/script.&lt;br /&gt;&lt;br /&gt;Source:&amp;nbsp;http://www.queness.com/post/11755/11-multi-touch-and-touch-events-javascript-libraries &amp;amp;&amp;nbsp;&lt;a href="http://kineticjs.com/"&gt;http://kineticjs.com/&lt;/a&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;a href="http://caniuse.com/"&gt;http://caniuse.com/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>ajohnclark</author><pubDate>Tue, 16 Oct 2012 13:45:19 GMT</pubDate><guid isPermaLink="false">New Post: Is it possible to use it on touch devices like ipad or iphone? 20121016014519P</guid></item><item><title>New Post: Link in a list</title><link>http://dragsort.codeplex.com/discussions/398993</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;hi there ... in the code below:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;ul&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;li&lt;/span&gt; &lt;span style="color:red"&gt;id&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;1&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	  &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;img&lt;/span&gt; &lt;span style="color:red"&gt;src&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;image.png&amp;quot;&lt;/span&gt; &lt;span style="color:blue"&gt;/&amp;gt;&lt;/span&gt;
	  &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;a&lt;/span&gt; &lt;span style="color:red"&gt;href&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;javascript:alert(1)&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;a&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;li&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;li&lt;/span&gt; &lt;span style="color:red"&gt;id&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;2&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	  &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;img&lt;/span&gt; &lt;span style="color:red"&gt;src&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;image.png&amp;quot;&lt;/span&gt; &lt;span style="color:blue"&gt;/&amp;gt;&lt;/span&gt;
	  &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;a&lt;/span&gt; &lt;span style="color:red"&gt;href&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;javascript:alert(1)&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;a&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;li&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	&lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;li&lt;/span&gt; &lt;span style="color:red"&gt;id&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;3&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	  &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;img&lt;/span&gt; &lt;span style="color:red"&gt;src&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;image.png&amp;quot;&lt;/span&gt; &lt;span style="color:blue"&gt;/&amp;gt;&lt;/span&gt;
	  &lt;span style="color:blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515"&gt;a&lt;/span&gt; &lt;span style="color:red"&gt;href&lt;/span&gt;&lt;span style="color:blue"&gt;=&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;quot;javascript:alert(1)&amp;quot;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;a&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
	&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;li&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color:blue"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515"&gt;ul&lt;/span&gt;&lt;span style="color:blue"&gt;&amp;gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br&gt;
In a especific browser/OS (example: Chrome version 22.0.1229.79 on Windows )&amp;nbsp;the click on a link in the list items is ignored. This
&lt;strong&gt;doesn't&lt;/strong&gt; happen&amp;nbsp;on another Browser/OS (example: Chromium 18.0.1025.151 on Linux).&lt;/p&gt;
&lt;p&gt;any suggestion ?&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Andreas Sch&amp;uuml;tz&lt;/p&gt;
&lt;/div&gt;</description><author>aschutz</author><pubDate>Thu, 11 Oct 2012 16:01:25 GMT</pubDate><guid isPermaLink="false">New Post: Link in a list 20121011040125P</guid></item></channel></rss>