Thanks for reply me,

I am placing following code on page HEAD.

<script language="javascript" src="Jquery.js"></script>
<script language="javascript">
function makeSublist(parent,child,isSubselectOptional,childVal)
{
    $("body").append("<select style='display:none'
id='"+parent+child+"'></select>");
    $('#'+parent+child).html($("#"+child+" option"));

        var parentValue = $('#'+parent).attr('value');
        $('#'+child).html($("#"+parent+child+" .sub_"+parentValue).clone());

    childVal = (typeof childVal == "undefined")? "" : childVal ;
    $("#"+child+' opti...@value="'+ childVal
+'"]').attr('selected','selected');

    $('#'+parent).change(
        function()
        {
            var parentValue = $('#'+parent).attr('value');
            $('#'+child).html($("#"+parent+child+"
.sub_"+parentValue).clone());
            //if(isSubselectOptional) $('#'+child).prepend("<option
value='none'> -- Select -- </option>");
            $('#'+child).trigger("change");
                        $('#'+child).focus();
        }
    );
}

    $(document).ready(function()
    {
        makeSublist('child','grandsun', true, '');
        makeSublist('parent','child', false, '1');
    });
</script>



same way i am add another pluging of Date picker and after adding calender
script, above stopped work.

Here is calender script if you want to see

<link type="text/css" href="js/ui.all.css" rel="stylesheet" />
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript" src="js/ui.datepicker.js"></script>
    <link type="text/css" href="js/demos.css" rel="stylesheet" />
    <script type="text/javascript">
    $(function() {
        $("#theDate").datepicker({altField: '#theDate', altFormat:
'dd-mm-yy'});
    });
    $(function() {
        $("#theDate1").datepicker({altField: '#theDate1', altFormat:
'dd-mm-yy'});
    });
    </script>


Let me know what i am doing wrong.

Thanks




On Tue, Jul 14, 2009 at 5:28 PM, Mean Mike <mcgra...@gmail.com> wrote:

>
> what plugs are you referring to ? could you show us how your importing
> jquery and plugins
>
> Mean Mike
>
> On Jul 14, 7:46 am, Sarm <sarm.desig...@gmail.com> wrote:
> > Hi Everyone,
> >
> > Many time i am getting one problem with Jquery when i am using more
> > then one jquery plugin on same page then only one plugin works which
> > will be on top.
> >
> > I guess few variables mixing and disturbing to each other. I just want
> > to know is there any way to control it?
> >
> > Advance thanks for help.
>

Reply via email to