Click here to Skip to main content
15,887,683 members
Home / Discussions / JavaScript
   

JavaScript

 
Questionunexpected character EOF Pin
Member 110313048-Mar-17 1:02
Member 110313048-Mar-17 1:02 
AnswerRe: unexpected character EOF Pin
Nathan Minier8-Mar-17 1:15
professionalNathan Minier8-Mar-17 1:15 
GeneralRe: unexpected character EOF Pin
Member 110313048-Mar-17 1:56
Member 110313048-Mar-17 1:56 
GeneralRe: unexpected character EOF Pin
Nathan Minier8-Mar-17 2:02
professionalNathan Minier8-Mar-17 2:02 
QuestionNext Issue - Script Bundle Problem? Pin
Kevin Marois7-Mar-17 11:59
professionalKevin Marois7-Mar-17 11:59 
AnswerRe: Next Issue - Script Bundle Problem? Pin
Nathan Minier8-Mar-17 1:21
professionalNathan Minier8-Mar-17 1:21 
GeneralRe: Next Issue - Script Bundle Problem? Pin
Kevin Marois8-Mar-17 3:59
professionalKevin Marois8-Mar-17 3:59 
QuestionSetting URL Pin
Kevin Marois7-Mar-17 8:22
professionalKevin Marois7-Mar-17 8:22 
I'm trying to get my JS code to connect to a SignalR service. Here's my JS:
JavaScript
<script src="/Scripts/jquery-3.1.1.min.js"></script>
<script src="/Scripts/jquery.signalR-2.1.2.js"></script>
<script src="/signalr/hubs"></script>

<script type="text/javascript">
    $(function () {

<pre>
    $.connection.hub.url = "http://192.168.51.74:8094/signalr";       //<=== HOW DO I DO THIS??

    var proxy = $.connection.DashboardHub;

    proxy.client.NotifyAllClientsOfChanges = function () {

        var searchUrl = "Home/GetData";

        $.ajax({
            url: searchUrl,
            type: "POST",
            success: function (data) {
                $("#divData").html(data);
            }
        });
    };

    $.connection.hub.start({ transport: 'auto', xdomain: true })
    .done(function () {
        console.log('Connected.');
    })
    .fail(function (e) {
        console.log('Unable to connect:' + e);
    });
});



I tried to set the IP at the top, but in the console I get
Cannot read property 'hub' of undefined

What am I doing wrong here???
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

AnswerRe: Setting URL Pin
ZurdoDev7-Mar-17 9:21
professionalZurdoDev7-Mar-17 9:21 
GeneralRe: Setting URL Pin
Kevin Marois7-Mar-17 10:47
professionalKevin Marois7-Mar-17 10:47 
AnswerRe: Page appearing way to wide. Pin
Richard MacCutchan3-Mar-17 21:14
mveRichard MacCutchan3-Mar-17 21:14 
AnswerRe: Page appearing way to wide. Pin
ZurdoDev7-Mar-17 9:23
professionalZurdoDev7-Mar-17 9:23 
QuestionSetting SignalR URL in JQuery Pin
Kevin Marois2-Mar-17 12:21
professionalKevin Marois2-Mar-17 12:21 
AnswerRe: Setting SignalR URL in JQuery Pin
Nathan Minier3-Mar-17 1:26
professionalNathan Minier3-Mar-17 1:26 
QuestionJavaScript Error - Internet Explorer - Object doesn't support property or method 'indexOf' Pin
Kevin Marois2-Mar-17 10:54
professionalKevin Marois2-Mar-17 10:54 
Question(SOLVED) Call to Member function execute() on null... Pin
samflex25-Feb-17 11:36
samflex25-Feb-17 11:36 
AnswerRe: Call to Member function execute() on null... Pin
Richard MacCutchan25-Feb-17 20:47
mveRichard MacCutchan25-Feb-17 20:47 
GeneralRe: Call to Member function execute() on null... Pin
samflex25-Feb-17 21:25
samflex25-Feb-17 21:25 
GeneralRe: Call to Member function execute() on null... Pin
Richard MacCutchan25-Feb-17 21:29
mveRichard MacCutchan25-Feb-17 21:29 
GeneralRe: Call to Member function execute() on null... Pin
samflex25-Feb-17 21:37
samflex25-Feb-17 21:37 
GeneralRe: Call to Member function execute() on null... Pin
Richard MacCutchan25-Feb-17 21:42
mveRichard MacCutchan25-Feb-17 21:42 
GeneralRe: Call to Member function execute() on null... Pin
samflex25-Feb-17 21:47
samflex25-Feb-17 21:47 
GeneralRe: Call to Member function execute() on null... Pin
Richard MacCutchan26-Feb-17 21:06
mveRichard MacCutchan26-Feb-17 21:06 
GeneralRe: Call to Member function execute() on null... Pin
samflex27-Feb-17 0:34
samflex27-Feb-17 0:34 
GeneralRe: Call to Member function execute() on null... Pin
Richard MacCutchan27-Feb-17 0:42
mveRichard MacCutchan27-Feb-17 0:42 

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.