Jump to content

Recommended Posts

In this code, this is always redirecting/forwarding to particular page. Could you please help me to navigate to different page on certain condition.

Suppose if the value of $product_array is greater than "200" go to one particular page, otherwise to second page.

 

 

$( "#search" ).autocomplete(

{

      minLength: 0,

      source: <?php echo $product_array;?>,   

     

   focus: function( event, ui )

          {

          $( "#search" ).val( ui.item.label );

          return false;

          },

 

  select: function( event, ui )

         {

         $( "#search" ).val( ui.item.label);

         $("#hsearch").val( ui.item.value );

         var url = '<?php echo Yii::app()->params["productURL"]. "'+ ui.item.value +'"."?lang=$lang"; ?>';

         window.location.replace(url);

         }

 

    });

Link to comment
https://forums.phpfreaks.com/topic/305495-condition-with-autocomplete/
Share on other sites

var url = 'params["productURL"]. "'+ ui.item.value +'"."?lang=$lang"; ?>';
That is one URL. Use an if (in Javascript) to use a different URL if the ui.item.value > 200.

 

Try it. If you have problems, post what you've come up with.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.