Click here to Skip to main content
15,894,825 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: request Pin
Richard MacCutchan29-Jul-12 9:14
mveRichard MacCutchan29-Jul-12 9:14 
Questionajax Pin
Paresh Barad29-Jul-12 8:11
Paresh Barad29-Jul-12 8:11 
AnswerRe: ajax Pin
Richard MacCutchan29-Jul-12 9:13
mveRichard MacCutchan29-Jul-12 9:13 
GeneralRe: ajax Pin
J4amieC30-Jul-12 2:32
J4amieC30-Jul-12 2:32 
GeneralRe: ajax Pin
Pete O'Hanlon30-Jul-12 2:40
mvePete O'Hanlon30-Jul-12 2:40 
GeneralRe: ajax Pin
enhzflep30-Jul-12 2:54
enhzflep30-Jul-12 2:54 
QuestionIs there any JavaScript libs with functions like DCT or FFT ? Pin
twtsa26-Jul-12 15:48
twtsa26-Jul-12 15:48 
Questioncreating a object, passing it back to another function Pin
jkirkerx23-Jul-12 7:55
professionaljkirkerx23-Jul-12 7:55 
I'm toying around with objects for the first time, I'm kind of fuzzy about passing back an object to use in another function. It doesn't bomb, but my product object in load_Template is empty.

I looking for some clarity in understanding this.

C#
function load_Template() {

    var exitCode = 0;
    $(document).ready(function () {

        var product = new Object();
        product = load_Structure_Product();
        alert(product.ID);

    });
    return exitCode;
}


function load_Structure_Product() {
    var product = new Object();
    $(document).ready(function () {
        product.ID = getParameterByName("cid");
        if (product.ID != 33) {
            product.PartNumber = "03-12E";
            product.ManPartNumber = "03-12E";
    });
    return product;
}

AnswerRe: creating a object, passing it back to another function Pin
BobJanova23-Jul-12 23:28
BobJanova23-Jul-12 23:28 
GeneralRe: creating a object, passing it back to another function Pin
jkirkerx24-Jul-12 6:54
professionaljkirkerx24-Jul-12 6:54 
Questionvar RVIPath = RVIPath || {}; Pin
fellathedog23-Jul-12 3:39
fellathedog23-Jul-12 3:39 
AnswerRe: var RVIPath = RVIPath || {}; Pin
BobJanova23-Jul-12 4:14
BobJanova23-Jul-12 4:14 
GeneralRe: var RVIPath = RVIPath || {}; Pin
fellathedog23-Jul-12 5:00
fellathedog23-Jul-12 5:00 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Richard MacCutchan23-Jul-12 5:17
mveRichard MacCutchan23-Jul-12 5:17 
RantRe: var RVIPath = RVIPath || {}; Pin
fellathedog23-Jul-12 5:34
fellathedog23-Jul-12 5:34 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Richard MacCutchan23-Jul-12 5:41
mveRichard MacCutchan23-Jul-12 5:41 
GeneralRe: var RVIPath = RVIPath || {}; Pin
BobJanova23-Jul-12 5:54
BobJanova23-Jul-12 5:54 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Richard MacCutchan23-Jul-12 7:06
mveRichard MacCutchan23-Jul-12 7:06 
GeneralRe: var RVIPath = RVIPath || {}; Pin
BobJanova23-Jul-12 23:25
BobJanova23-Jul-12 23:25 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Richard MacCutchan23-Jul-12 23:42
mveRichard MacCutchan23-Jul-12 23:42 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Andy Brummer9-Aug-12 10:38
sitebuilderAndy Brummer9-Aug-12 10:38 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Richard MacCutchan9-Aug-12 22:23
mveRichard MacCutchan9-Aug-12 22:23 
GeneralRe: var RVIPath = RVIPath || {}; Pin
Andy Brummer10-Aug-12 5:03
sitebuilderAndy Brummer10-Aug-12 5:03 
AnswerRe: var RVIPath = RVIPath || {}; Pin
J4amieC23-Jul-12 5:13
J4amieC23-Jul-12 5:13 
QuestionI get "ReferenceError:'myreq' is undefined" error for <textarea> variable? Pin
creative2619-Jul-12 7:09
creative2619-Jul-12 7:09 

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.