code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
//选择一级分类后的联动效果
function firstarry(id)
{
var param = "Option=first&ID="+ id;
var options={
method:'post',
parameters:param,
onComplete:
function(transport)
{
var retv=transport.responseText;
document.getElementById("secondClass").innerHTML = retv;
... | JavaScript |
//声明XMLHttpRequest对象
var xmlHttp;
function createXMLHTTP()
{
if(window.XMLHttpRequest)
{
xmlHttp=new XMLHttpRequest();//mozilla浏览器
}
else if(window.ActiveXObject)
{
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");//IE老版本
}
catch(e)... | JavaScript |
function Pro_CategoriesDel(id)
{
var param = "Option=Del&ID="+ id;
var options={
method:'post',
parameters:param,
onComplete:
function(transport)
{
var retv=transport.responseText;
if(retv=="")
{
alert("删除成功.");
window.locatio... | JavaScript |
//声明XMLHttpRequest对象
var xmlHttp;
//创建XMLHTTP对象
function createXMLHTTP()
{
if(window.XMLHttpRequest)
{
xmlHttp=new XMLHttpRequest();//mozilla浏览器
}
else if(window.ActiveXObject)
{
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");//IE老版本
}
... | JavaScript |
/*------------------------------------------------------------------------
日期控件
function Cal_dropdown(edit,min,max)
弹出日历,可不给参数min和max,参数edit必须有
function Cal_datevalid(edit,min,max)
检查edit中值是否为大于等于min,小于等于max的有效日期格式字符串。
是则返回 true,否则返回false
可不给参数min和max(字符串格式)
参数edit必须有,如果edit无,则必须... | JavaScript |
var myC_x,myC_y;
var myC_timeset=null,myC_timeset1=null;
var divObj=null;
var inputName;
var myYearOfToday = new Date().getFullYear();
var myMonthOfToday = new Date().getMonth() + 1;
var myDayOfToday = new Date().getDate();
var myYearOfInputDate=null;
var myMonthOfInputDate=null;
var myDayOfInputDate=null;... | JavaScript |
function getObjectById(id)
{
if (typeof(id) != "string" || id == "") return null;
if (document.all) return document.all(id);
if (document.getElementById) return document.getElementById(id);
try {return eval(id);} catch(e){ return null;}
}
function set(id,name)
{
var NodeId=getObjec... | JavaScript |
function js_Class()
{
//获取后台顶部窗口传值到左框架窗口(注:只适用与获取一个参数值的情况)
this.Get_UrlParam=function()
{
var url = document.location.href;
var menuno=""
if (url.indexOf("=")>0)
{
menuno = url.substring(url.indexOf("=")+1,url.length)
if(this.isNumber(menun... | JavaScript |
function setpage(newPage)
{
if ((document.all.pageIndex.value=="") ||(document.all.pageIndex.value!=newPage))
{
document.all.pageIndex.value=newPage;
document.all.Event.value = "false";
document.forms[0].submit();
}
}
function DeleteRow() {
var tr = window.event.srcElement;
while ((... | JavaScript |
function getObjectById(id)
{
if (typeof(id) != "string" || id == "") return null;
if (document.all) return document.all(id);
if (document.getElementById) return document.getElementById(id);
try {return eval(id);} catch(e){ return null;}
}
function set(id,name)
{
var NodeId=getObje... | JavaScript |
//后台全选/取消全选,删除提示
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.name != 'chkAll')
{
e.checked = form.chkAll.checked;
}
}
form.BackAll.checked=false;
}
function CheckBack(form)
{
... | JavaScript |
//后台全选/取消全选,删除提示
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.name != 'chkAll')
{
e.checked = form.chkAll.checked;
}
}
}
function isDel(alertString)
{
var ok=confirm(alertString)... | JavaScript |
//添加品牌
function cbType()
{
if(str!=true)
{
document.getElementById("LlCategories").style.display="none";
}
else
{
document.getElementById("LlCategories").style.display="";
}
}
//添加品牌验证
function validate()
{
var products=document.getElementsByName("cbType");
for(i=0;i<products.le... | JavaScript |
function optionsOut(id,Count)
{
$("cnID"+id+"").style=""
} | JavaScript |
function getObjectById(id)
{
if (typeof(id) != "string" || id == "") return null;
if (document.all) return document.all(id);
if (document.getElementById) return document.getElementById(id);
try {return eval(id);} catch(e){ return null;}
}
function set(id,name)
{
var NodeId=getObje... | JavaScript |
$(document).ready(function(){
$("#xy").attr("style","height:100%;padding-left:1%;");
$("#xy span").children("dl").attr("style","width:31%; float:left;padding:1%");
$("#xy span").children("dl:nth-child(odd)").attr("style","width:31%; height:auto; float:left; border-top:1px solid lightblue; padding:1%");
... | JavaScript |
/*
* jQuery Impromptu
* By: Trent Richardson [http://trentrichardson.com]
* Version 1.5
* Last Modified: 3/31/2008
*
* Copyright 2008 Trent Richardson
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obt... | JavaScript |
JS
<!--
//初始化焦点对象
function InitFocus()
{
var obj;
var hidObj = document.parentWindow.parent.document.all("hidFocus");
if (hidObj.value != "")
{
obj = window.document.all(hidObj.value);
if (obj != null)
{
obj.focus();
obj.select();
}
}
}
//下拉框空格键翻页
function DropDownKeyDown(control)
{
... | JavaScript |
/*************************全选****************************/
function CheckBoxAll(allcheckbox)
{
var all= $$(allcheckbox);
var checkboxitems =document.getElementsByName("ckx_id");
var state = all.checked;
//alert(checkboxitems.length);
for(var i=0;i<checkboxitems.length;i++)
{
... | JavaScript |
<!--
function killerr()
{
return true;
}
window.onerror = killerr;
-->
function addFile()
{
var str = '<br /><input type="file" name="File" runat="server" />描述:<input name="description" type="text" value="" maxlength="200" />'
document.getElementB... | JavaScript |
/*以下校验函数,通过返回true,否则为false; [huangsong]
所有的函数2和原函数是一样的 ,如:CheckPN和CheckPN2
以下校验函数中的参数page是向导的页码 ,不是向导的,不用此参数
*/
var maxpn=99999999;
var maxfn=99999999.9;
var numerrormsg0="请输入0-99999999之内的数字";
var numerrormsg1="请输入1-99999999之内的数字";
var overerrormsg="数值超过最大值99999999";
//检查输入键是否为0~9,... | JavaScript |
var persistmenu="yes"
var persisttype="sitewide"
if (document.getElementById){
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}
function SwitchMenu(obj){
if(document.getElementById){
var el = document.getElementById(obj);
var ... | JavaScript |
/*------------------------------------------------------------------------
日期控件
function Cal_dropdown(edit,min,max)
弹出日历,可不给参数min和max,参数edit必须有
function Cal_datevalid(edit,min,max)
检查edit中值是否为大于等于min,小于等于max的有效日期格式字符串。
是则返回 true,否则返回false
可不给参数min和max(字符串格式)
参数edit必须有,如果edit无,则必须... | JavaScript |
function setpage(newPage)
{
if ((document.all.pageIndex.value=="") ||(document.all.pageIndex.value!=newPage))
{
document.all.pageIndex.value=newPage;
document.all.Event.value = "false";
document.forms[0].submit();
}
}
function DeleteRow() {
var tr = window.event.srcElement;
wh... | JavaScript |
//后台全选/取消全选,删除提示
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.name != 'chkAll')
{
e.checked = form.chkAll.checked;
}
}
form.BackAll.checked=false;
}
function CheckBack(form)
{
... | JavaScript |
//后台全选/取消全选,删除提示
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.name != 'chkAll')
{
e.checked = form.chkAll.checked;
}
}
}
function isDel(alertString)
{
var ok=confirm(alertString)... | JavaScript |
//添加品牌
function cbType()
{
if(str!=true)
{
document.getElementById("LlCategories").style.display="none";
}
else
{
document.getElementById("LlCategories").style.display="";
}
}
//添加品牌验证
function validate()
{
var products=document.getElementsByName("cbType");
for(i=0;i<products.le... | JavaScript |
function getObjectById(id)
{
if (typeof(id) != "string" || id == "") return null;
if (document.all) return document.all(id);
if (document.getElementById) return document.getElementById(id);
try {return eval(id);} catch(e){ return null;}
}
function set(id,name)
{
var NodeId=getObje... | JavaScript |
JS
<!--
//初始化焦点对象
function InitFocus()
{
var obj;
var hidObj = document.parentWindow.parent.document.all("hidFocus");
if (hidObj.value != "")
{
obj = window.document.all(hidObj.value);
if (obj != null)
{
obj.focus();
obj.select();
}
}
}
//下拉框空格键翻页
function DropDownKeyDown(control)
{
... | JavaScript |
/*以下校验函数,通过返回true,否则为false; [huangsong]
所有的函数2和原函数是一样的 ,如:CheckPN和CheckPN2
以下校验函数中的参数page是向导的页码 ,不是向导的,不用此参数
*/
var maxpn=99999999;
var maxfn=99999999.9;
var numerrormsg0="请输入0-99999999之内的数字";
var numerrormsg1="请输入1-99999999之内的数字";
var overerrormsg="数值超过最大值99999999";
//检查输入键是否为0~9,... | JavaScript |
var persistmenu="yes"
var persisttype="sitewide"
if (document.getElementById){
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}
function SwitchMenu(obj){
if(document.getElementById){
var el = document.getElementById(obj);
var ... | JavaScript |
window.onload = function() {
doubleBgColor(document.getElementById("styletableborder"),"#ffffff","#f4f4f4")
}
function doubleBgColor(Table,Bg1,Bg2) {
for (var i=0;i<Table.rows.length;i++) Table.rows[i].bgColor=i%2?Bg2:Bg1;
}
| JavaScript |
<!--
var channelName = ["首页模板","栏目模板","详细内容模板","购物模板","网站公告","资讯频道","会员中心","交互页面","独立页面","店铺模板"];//频道名称
var channelInt = [1,2,3,4,5,6,7,8,9,10];//频道id
//各频道的下属类型名称
var channelTypes1=["网站首页模板","二级首页","购物资讯","全店商品","客户留言"];
var channelTypes2=["频道首页模板","团购专区","拍卖专区","品牌商品列表"];
var channelTypes3=["频道首页模板","帮助详细信息",... | JavaScript |
// JavaScript Document
/// <reference path="lib/jquery.min.js" />
/// <reference path="util.js" />
(function ($) {
$(document).ready(function () {
//限时抢购
var proIds = "";
var remains = $("#limitTimeBox .remain");
remains.each(function () {
proIds += this.id + ","... | JavaScript |
/// <reference path="util.js" />
/// <reference path="lib/jquery-1.4.4.min.js" />
(function ($) {
$(document).ready(function () {
var commValuesArr = $("#commValues").val().split('|');
var Pro_CID = commValuesArr[0];
var Pro_ID = commValuesArr[1];
$('#jqGallery').jqzoom({//... | JavaScript |
//CSS背景控制
function overColor(Obj) {
var elements = Obj.childNodes;
for (var i = 0; i < elements.length; i++) {
elements[i].className = "TR_BG"
Obj.bgColor = ""; //颜色要改
}
}
function outColor(Obj) {
var elements = Obj.childNodes;
for (var i = 0; i < elements.length; i++) {... | JavaScript |
// JavaScript Document
var BlockUI = {
delReturnMesDiv: function (win, matchTxt) {
// / <summary>删除操作提示Tip</summary>
// / <param name="win" type="Object">操作窗体</param>
// / <param name="matchTxt" type="String">按照匹配文字删除</param>
// / <returns></returns>
var currWin = win ... | JavaScript |
/// <reference path="../configuration/js/jquery.min.js" />
/// <reference path="util.js" />
// JavaScript Document
(function () {
//注册验证
function regVerify() {
var errMsg = $("#errorMsg");
var email = $("#txtEmail").val();
var reg = /\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/... | JavaScript |
// JavaScript Document
/// <reference path="lib/jquery.min.js" />
/// <reference path="util.js" />
(function ($) {
$(document).ready(function () {
//获取购物车商品信息
function getCartItems() {
$.get("/handler/Product.ashx?rdm=" + Math.random(), { action: "getCartItems" }, function (data... | JavaScript |
/*!
* jQzoom Evolution Library v2.3 - Javascript Image magnifier
* http://www.mind-projects.it
*
* Copyright 2011, Engineer Marco Renzi
* Licensed under the BSD license.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following cond... | JavaScript |
/// <reference path="util.js" />
jQuery.noConflict();
jQuery(document).ready(function () {
jQuery("#xx1,#xx2,#xx3,#xx4").click(function () {
var num = jQuery(this).attr("id").replace("xx", "");
jQuery(this).siblings().each(function () {
this.className = "tabOff";
});
... | JavaScript |
<!--
// JavaScript Document
//返回汉字的拼音的第一个字母
function GetPY(str)
{
var ret = '';
for(var i=0,len=str.length;i<len;i++)
{
var ch = str.charAt(i);
ret += CheckCh(ch);
}
return ret;
}
function CheckCh(ch)
{
var uni = ch.charCodeAt(0);
var strChineseFirstP... | JavaScript |
var Prototype = {
Version: '1.4.0',
ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
emptyFunction: function() {},
K: function(x) {return x}
}
var Class = {
create: function() {
return function() {
this.initialize.apply(this, arguments);
}
}
}
var Abstract = new... | JavaScript |
function DrawImage(ImgD,FitWidth,FitHeight)
{ //alert(FitWidth+","+FitHeight);
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0)
{
// if(image.width/image.height>= FitWidth/FitHeight)
// {
if(image.width>FitWidth)
{
ImgD.width=FitWidth;
// ImgD.hei... | JavaScript |
function SendAjax(op,OrderFiled, PageIndex,ClassId)
{
var param = "Option="+ op +"&OF="+ OrderFiled+"&PI="+PageIndex+"&CID="+ClassId;
var options={
method:'post',
parameters:param,
onComplete:
function(transport)
{
var retv=transport.responseText;
d... | JavaScript |
/*
Uniform v1.7.5
Copyright © 2009 Josh Pyles / Pixelmatrix Design LLC
http://pixelmatrixdesign.com
Requires jQuery 1.4 or newer
Much thanks to Thomas Reynolds and Buck Wilson for their help and advice on this
Disabling text selection is made possible by Mathias Bynens <http://mathiasbynens.be/>
and his noSelect pl... | JavaScript |
jQuery.fn.extend({
everyTime: function(interval, label, fn, times, belay) {
return this.each(function() {
jQuery.timer.add(this, interval, label, fn, times, belay);
});
},
oneTime: function(interval, label, fn) {
return this.each(function() {
jQuery.timer.add(this, interval, label, fn, 1);
});
},
sto... | JavaScript |
/**
* SmallSilder JQuery plugin
* http://lib.kindcent.com/smallslider
* JQuery plugin for switch images, Please Open me with UTF-8 encoding
* Created under Ubuntu 9.10 OS , if you open it with notepad.exe , some black squares will appear !
* 这是一个源码开放程序,本人特意加上注释以方便大家修改,你可以自行修改,再发布,欢迎和我交流。
* 0.5版本新增加actionGap延时选项,部... | JavaScript |
function slideShow() {
//Set the opacity of all images to 0
$('#gallery a').css({opacity: 0.0});
//Get the first image and display it (set it to full opacity)
$('#gallery a:first').css({opacity: 1.0});
//Set the caption background to semi-transparent
$('#gallery .caption').css({opacity: 0.7});
//Resize the... | JavaScript |
/**
* WYSIWYG - jQuery plugin 0.6
*
* Copyright (c) 2008-2009 Juan M Martinez
* http://plugins.jquery.com/project/jWYSIWYG
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* $Id: $
*/
(function( $ )
{
$.fn.... | JavaScript |
/*
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Uses the built in easing capabilities added In jQuery 1.1
* to offer multiple easing options
*
* TERMS OF USE - jQuery Easing
*
* Open source under the BSD License.
*
* Copyright © 2008 George McGinley Smith
* All rights reserved.
*
... | JavaScript |
/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*
* Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
* Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
* Thanks to: Seamus Leahy for adding deltaX and deltaY
*
*... | JavaScript |
/*
* FancyBox - jQuery Plugin
* Simple and fancy lightbox alternative
*
* Examples and documentation at: http://fancybox.net
*
* Copyright (c) 2008 - 2010 Janis Skarnelis
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support i... | JavaScript |
/*
Uploadify v2.1.4
Release Date: November 8, 2010
Copyright (c) 2010 Ronnie Garcia, Travis Nickels
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without ... | JavaScript |
$(function() {
/*
number of fieldsets
*/
var fieldsetCount = $('#formElem').children().length;
/*
current position of fieldset / navigation link
*/
var current = 1;
/*
sum and save the widths of each one of the fieldsets
set the final sum as the total width of the steps element
*/
va... | JavaScript |
(function($) {
$.fn.tipsy = function(options) {
options = $.extend({}, $.fn.tipsy.defaults, options);
return this.each(function() {
var opts = $.fn.tipsy.elementOptions(this, options);
$(this).hover(function() {
$.data(this... | JavaScript |
function double_list_move(srcId, destId)
{
var src=document.getElementById(srcId);
var dest=document.getElementById(destId);
for (var i = 0; i < src.options.length; i++)
{
if (src.options[i].selected)
{
dest.options[dest.length] = new Option(src.options[i].text, src.options[i].value);
src.o... | JavaScript |
// django javascript file
// Finds all fieldsets with class="collapse", collapses them, and gives each
// one a "show" link that uncollapses it. The "show" link becomes a "hide"
// link when the fieldset is visible.
function findForm(node) {
// returns the node of the form containing the given node
if (node.tagNa... | JavaScript |
/*
* jQuery UI selectmenu
*
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI
*/
(function($) {
$.widget("ui.selectmenu", {
_init: function() {
var self = this, o = this.options;
... | JavaScript |
jQuery().ready(function(){
// theme switcher
if ($('#switcher').length)
{
$('#switcher').themeswitcher();
}
// all hover and click logic for buttons
$(".fg-button:not(.ui-state-disabled)")
.hover(
function(){
$(this).addClass("ui-state-hover");
},
function(){
$(this... | JavaScript |
/* jQuery plugin themeswitcher
---------------------------------------------------------------------*/
$.fn.themeswitcher = function(settings){
var options = jQuery.extend({
loadTheme: null,
initialText: 'Switch Theme',
width: 150,
height: 200,
buttonPreText: 'Theme: ',
closeOnSelect: true,
buttonHeight:... | JavaScript |
/*--------------------------------------------------------------------
Scripts for creating and manipulating custom menus based on standard <ul> markup
Version: 3.0, 03.31.2009
By: Maggie Costello Wachs (maggie@filamentgroup.com) and Scott Jehl (scott@filamentgroup.com)
http://www.filamentgroup.com
* reference arti... | JavaScript |
function SWFObject(swf, id, w, h, ver, c){
this.params = new Object();
this.variables = new Object();
this.attributes = new Object();
this.setAttribute("id",id);
this.setAttribute("name",id);
this.setAttribute("width",w);
this.setAttribute("height",h);
this.setAttribute("version",ver);
this.setAttribu... | JavaScript |
// Draw color selector
// create 6-element array
var s = "";
var hex = new Array(6)
// assign non-dithered descriptors
hex[0] = "FF"
hex[1] = "CC"
hex[2] = "99"
hex[3] = "66"
hex[4] = "33"
hex[5] = "00"
// draw a single table cell based on all descriptors
function drawCell(red, green, blue) {
// open cell... | JavaScript |
function createXML(){
if(window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
} else if(window.ActiveXObject) {
try{xmlHttp = new ActiveX0bject("Msxml2.XMLHTTP");}
catch(e) {}
try {xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");}
catch(e) {}
if(!xmlHttp){
window.alert("No Create XML");
return fals... | JavaScript |
var scripts=document.getElementsByTagName("script");var pbtime = 1200000;
var curJS=scripts[scripts.length-1];
var getArgs=(function(){
var sc=document.getElementsByTagName('script');
var paramsArr=sc[sc.length-1].src.split('?')[1].split('&');
var args={},argsStr=[],param,t,name,value;
for(var i=0,len=paramsArr.l... | JavaScript |
var scripts=document.getElementsByTagName("script");
var curJS=scripts[scripts.length-1];
var getArgs=(function(){
var sc=document.getElementsByTagName('script');
var paramsArr=sc[sc.length-1].src.split('?')[1].split('&');
var args={},argsStr=[],param,t,name,value;
for(var i=0,len=paramsArr.length;i<len;i++){
pa... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* ... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.