14 lines
485 B
JavaScript
14 lines
485 B
JavaScript
$(document).ready(function()
|
|
{
|
|
$("a.customFields").colorbox({width:540, height:340, iframe:true, transition:'none'});
|
|
$('#' + browseType + 'Tab').addClass('active');
|
|
$('#module' + moduleID).addClass('active');
|
|
if(browseType == 'bysearch') ajaxGetSearchForm();
|
|
|
|
/* If customed and the browse is ie6, remove the ie6.css. */
|
|
if(customed && $.browser.msie && Math.floor(parseInt($.browser.version)) == 6)
|
|
{
|
|
$("#browsecss").attr('href', '');
|
|
}
|
|
});
|