• Hello!

    Sry i little speak english …
    http://webshopmedia.hu/arak-es-csomagok

    i create list repair js ….

    my code:

    jQuery(document).ready(function()
    {
    	var cnt = 0;
    	var liHeights = new Array();
    	jQuery(".pricing-table > .col1:first .feature-content > ul > li").each(function()
    	{
    		liHeights[cnt++] = parseInt(jQuery(this).height());
    	});
    
    	jQuery(".pricing-table .col1 .price-content > ul").each(function()
    	{
    			var ccnt = 0;
    			jQuery("li",this).each(function()
    			{
    				if(parseInt(jQuery(this).height()) != liHeights[ccnt])
    				{
    					jQuery(this).height(liHeights[ccnt]);
    				}
    				ccnt++;
    			});
    	});
      	jQuery(".pricing-table .col1 .selectePrice-content > ul").each(function()
    	{
    			var ccnt = 0;
    			jQuery("li",this).each(function()
    			{
    				if(parseInt(jQuery(this).height()) != liHeights[ccnt])
    				{
    					jQuery(this).height(liHeights[ccnt]);
    				}
    				ccnt++;
    			});
    	});
    
    });

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    http://wordpress.org/extend/plugins/pricing-table/

Viewing 3 replies - 1 through 3 (of 3 total)
  • can you post the code again please ?

    Here’s some code but im not going to tell you how to use it or anything. Kind of upset, I paid money for this plugin, premium plugin should work and have better support!

    How about telling us what to do with this code?

    Thread Starter eggproject

    (@eggproject)

    Hello!

    I little speak english

    1. I did not make the plugin
    2. my bugfix just insert in <head> …..wp_head() after ! <script type=”text/javasctipt”>MYBUGFIX</script> …….

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘multiline feature js bugfix’ is closed to new replies.