Click here to Skip to main content
16,006,442 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Bootstrap v W3.CSS Pin
Afzaal Ahmad Zeeshan22-Dec-16 4:00
professionalAfzaal Ahmad Zeeshan22-Dec-16 4:00 
QuestionSecure a PHP Webservice Pin
Jassim Rahma21-Dec-16 1:39
Jassim Rahma21-Dec-16 1:39 
QuestionNewbie - rendering software? Pin
Member 1291366619-Dec-16 23:46
Member 1291366619-Dec-16 23:46 
AnswerRe: Newbie - rendering software? Pin
Richard MacCutchan20-Dec-16 0:52
mveRichard MacCutchan20-Dec-16 0:52 
GeneralRe: Newbie - rendering software? Pin
Member 1291366620-Dec-16 0:56
Member 1291366620-Dec-16 0:56 
GeneralRe: Newbie - rendering software? Pin
Richard MacCutchan20-Dec-16 1:21
mveRichard MacCutchan20-Dec-16 1:21 
AnswerRe: Newbie - rendering software? Pin
Afzaal Ahmad Zeeshan20-Dec-16 3:41
professionalAfzaal Ahmad Zeeshan20-Dec-16 3:41 
GeneralRe: Newbie - rendering software? Pin
Member 1291366621-Dec-16 0:54
Member 1291366621-Dec-16 0:54 
QuestionKendo Dropdown MVC Pin
eejaynic19-Dec-16 9:04
eejaynic19-Dec-16 9:04 
AnswerRe: Kendo Dropdown MVC Pin
Afzaal Ahmad Zeeshan19-Dec-16 23:46
professionalAfzaal Ahmad Zeeshan19-Dec-16 23:46 
GeneralRe: Kendo Dropdown MVC Pin
eejaynic20-Dec-16 3:35
eejaynic20-Dec-16 3:35 
GeneralHow to automatically crop and center an image Pin
Member 1289853215-Dec-16 22:59
Member 1289853215-Dec-16 22:59 
AnswerRe: How to automatically crop and center an image Pin
Afzaal Ahmad Zeeshan15-Dec-16 23:18
professionalAfzaal Ahmad Zeeshan15-Dec-16 23:18 
QuestionPhp Email Pin
Member 1290193913-Dec-16 23:11
Member 1290193913-Dec-16 23:11 
AnswerRe: Php Email Pin
Richard MacCutchan13-Dec-16 23:18
mveRichard MacCutchan13-Dec-16 23:18 
GeneralRe: Php Email Pin
mamaison28-Dec-16 5:59
professionalmamaison28-Dec-16 5:59 
QuestionRe: Php Email Pin
Richard MacCutchan28-Dec-16 6:49
mveRichard MacCutchan28-Dec-16 6:49 
QuestionConfigure Tomcat for https without redirects? Pin
Member 1290099112-Dec-16 14:28
Member 1290099112-Dec-16 14:28 
AnswerRe: Configure Tomcat for https without redirects? Pin
Afzaal Ahmad Zeeshan16-Dec-16 4:22
professionalAfzaal Ahmad Zeeshan16-Dec-16 4:22 
QuestionWhich Typescript compiler is used by VS2015 during compile on save Pin
GRAyers9-Dec-16 2:29
GRAyers9-Dec-16 2:29 
QuestionUsing Multiple jQuery Scripts Pin
Liagapi8-Dec-16 0:11
Liagapi8-Dec-16 0:11 
AnswerRe: Using Multiple jQuery Scripts Pin
Peter Leow8-Dec-16 0:53
professionalPeter Leow8-Dec-16 0:53 
GeneralRe: Using Multiple jQuery Scripts Pin
Liagapi8-Dec-16 1:17
Liagapi8-Dec-16 1:17 
GeneralRe: Using Multiple jQuery Scripts Pin
Peter Leow8-Dec-16 1:29
professionalPeter Leow8-Dec-16 1:29 
GeneralRe: Using Multiple jQuery Scripts Pin
Liagapi8-Dec-16 2:07
Liagapi8-Dec-16 2:07 
Hi, I guess I'm asking about best practices when breaking up script files into multiple external files.

Suppose I want to do something like below where I only call the functions which reside in other files
JavaScript
// Inside File1

$(document).ready(function(){
    function1();
    function2();
    function3();
    function4();
    function5();
});


The definitions of the functions being called inside of File1 are in other files.

Is this a common practice? If it is not how most people keep their files small,
please suggest how it is done by most people.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.