remove the Jquery.js, as that is an old version. In the sublist script
find this line
$("#"+child+' opti...@value="'+ childVal +'"]').attr('selected','selected');
remove the @ symbol, so you have
$("#"+child+' option[value="'+ childVal +'"]').attr('selected','selected');
You shouldn't just be directly copy and pasting the code examples given
on demo pages/extracting directly from the zip, this will just cause you
problems, and a ridiculously messy root folder.
Sarm wrote:
Thanks for reply but both jquery files are related plugin. If i will
delete one jquery file then related will stop work.
I know one jquery file is enough so if i will remove this one
<script language="javascript" src="Jquery.js"></script>
then Sublist part will be stop work and if i will remove this one
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
then calender will stop work.
On Tue, Jul 14, 2009 at 7:49 PM, Liam Potter <radioactiv...@gmail.com
<mailto:radioactiv...@gmail.com>> wrote:
You are including the jquery library multiple times, you only need
to call jquery once. eg
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.plugin.js"></script>
<script type="text/javascript" src="jquery.plugin.js"></script>
<script type="text/javascript" src="jquery.plugin.js"></script>
<script type="text/javascript" src="jquery.plugin.js"></script>
<script type="text/javascript">
$(function(){
$("#selector").plugin();
$("#selector").plguin();
});
</script>
Mean Mike wrote:
I'm confused are you saying this doesn't work ?
<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>
if so are you getting any errors and are you sure your calling the
right copy of jquery as I see it is different than whats in
the second
half of your post