Current File : /home/inlingua/www/icentex/pg/js/custom.js |
$(document).ready(function() {
$('#prodcat1').change(function() {
var i = $('#target1').val();
if(i==61||i==62||i==63||i==144||i==150||i==29||i==231||i==232||i==233||i==234||i==235||i==230||i==229) {
var popupid = 'popuprel2';//$(this).attr('rel');
$('#' + popupid).fadeIn();
$('body').append('<div id="fade"></div>');
$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(3000);
var popuptopmargin = ($('#' + popupid).height() + 10) / 2;
var popupleftmargin = ($('#' + popupid).width() + 10) / 2;
$('#' + popupid).css({'margin-top' : -popuptopmargin,'margin-left' : -popupleftmargin });
}
});
$('.Update').click( function() {
var popupid = $(this).attr('rel');
$('#' + popupid).fadeIn();
$('body').append('<div id="fade"></div>');
$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(3000);
var popuptopmargin = ($('#' + popupid).height() + 10) / 2;
var popupleftmargin = ($('#' + popupid).width() + 10) / 2;
$('#' + popupid).css({'margin-top' : -popuptopmargin,'margin-left' : -popupleftmargin });
});
$('#fade').click(function() {
$('#fade , #popuprel , #popuprel2 , #popuprel3').fadeOut()
return false;
});
});
$(document).ready(function() {
$("#fadeout").click(function(){
//alert('Sandeep');
$("#fade").fadeOut("slow");
$("#popuprel2").fadeOut();
// $("#div3").fadeOut(3000);
});
});
//For SHow Students Short Ledger
$(document).ready(function() {
// Expand Panel
$("#Show_led").click(function(){
$("#Ledger").slideDown("slow");
$("#Show_led").css({display: "none"});
$("#Close_led").css({display: "block"});
});
// Collapse Panel
$("#Close_led").click(function(){
$("#Ledger").slideUp("slow");
$("#Show_led").css({display: "block"});
$("#Close_led").css({display: "none"});
});
});