Hi Guys

I need to retrieve a value from the javascript below in my html code and inject this value into a webbrowser. how can I format and invoke this script ?

$(function(){jQuery.liveviewWithTable({enableCountsTable:false,enableCountTable:true,countTableElement:$("#count"),directionIn:$.getParam("Counter.DirectionIn"),liveSumUrl:"/local/people-counter/.api?live-sum.json",loadingAnimationUrl:"/people-counter/images/ajax-loader.gif",dataTypes:["in","out"]})});

Thanks a lot

Recommended Answers

All 2 Replies

I don't believe this belongs in the vb.NET forum. Perhaps java or web development? I can move it if you have a preference.

OK,Let me rephrase this question,
How can I call this javascript in my webbrowser control with vb.net and show the result on text box ? Thanks for you help

$(function()
{
 jQuery.liveviewWithTable(
 {
  enableCountsTable:false,
  enableCountTable:true,
  countTableElement:$("#count"),
  directionIn:$.getParam("Counter.DirectionIn"),
  liveSumUrl:"/local/people-counter/.api?live-sum.json",
  loadingAnimationUrl:"/people-counter/images/ajax-loader.gif",
  dataTypes:["in","out"]
 })      
});
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.