Questions tagged [client-side]

The term "client-side" refers to that portion of a web application which runs in the user's browser. Client-side code is most commonly written in Javascript, HTML and CSS. The counterpart of "client-side" is "server-side", i.e., the part of a web application running at the web server.

There are other many client-side techniques, in addition to used in the user's browser such as:

See also:

2357 questions
0
votes
1 answer

Custom upload file explorer

How can I customize the file explorer window when I try to upload files? Or maybe something that can get the files from the user side. I'm thinking of doing the same with the Share It app that can display all files from user side.
0
votes
0 answers

Does React libraries and npm modules reside at client side (browser side) along with actual js code?

Is React and ReactDOM libraries reside in running html page(single page) at browser? Are other js libraries (installed in npm_modules) are also reside in running HTML page at browser ? Or all above libraries and actual code (programmers) converted…
0
votes
1 answer

Add code in render function of BaseClientSideWebPart with javascript

I am creating custom client side web part for sharepoint. In the edit panel, when the button is clicked I would like to add more html after the code in the render method, but when the code is appended to the html in render method, its immediately…
Kyle Trent
  • 43
  • 1
  • 4
0
votes
1 answer

Pop up window opened from code behind is not getting closed

i am opening a pop up from code behind(which i am using as waiting image while processing) after that i am doing some activity in background ,when the activity is done i am closing that pop up . the problem is after the activity is over the pop is…
Pranav
  • 8,563
  • 4
  • 26
  • 42
0
votes
0 answers

Can parent.location be trusted?

This question treats about javascript code running in a browser (client-side). Say I know I am in an iframe, can I trust window.parent.location or document.referrer to actually be the true url of the parent of my iframe? In other words, assuming…
Sinder
  • 273
  • 1
  • 11
0
votes
1 answer

How do you run a function of the server side while on the client side?

So I've been having this isue for several days now. I'm trying to pass data into my serverside script, but when I do I get this error message. Error Message I've tried watching several videos on youtube and they all say the same thing, that you have…
0
votes
0 answers

Connecting to Zookeeper from client-side javascript

I wish to connect to Zookeeper from client-side javascript. However, I can not find any suitable library for it. All the npm packages I could find are for node.js. Can someone help me with the same? Thanks
0
votes
1 answer

How to generate a targeted client-side click within a server control?

I have been working purely with ASP.NET so far, but am getting frustrated with the restrictions of the AJAX toolkit when it comes to animations, so I have been looking at using Jquery since yesterday to spice up my UI. Please bear in mind that I am…
yu_ominae
  • 2,975
  • 6
  • 39
  • 76
0
votes
1 answer

Checking a list of domain names to see if they've expired using client-side code

I have a list of domain names. I can get this list in multiple formats, such as XML, HTML, CSV etc. I want to be able to use client-side code to check if the domain names in the list have expired. Does anyone have any suggestion how that could be…
Khuram Malik
  • 1,475
  • 3
  • 18
  • 30
0
votes
1 answer

Jquery dialog client side validation on "Required!!" fields with asp.net mvc2

I've loaded a form dynamically into a jquery ui dialog. Now I want to add client side validation to this dialog. I've tried Scott Gu's Blog and that works all well and good but doesn't affect the dialog (no error message of "Title required" when I…
porps89
  • 125
  • 1
  • 1
  • 10
0
votes
1 answer

Client side validation on excel file is failing in testcafe

Our website is developed on react,after uploading excel,excel validation is happening in front end using third party library[sheet JS].Manually its working but testcafe automation is failing.Automation is hanging while client side validation is in…
0
votes
1 answer

How do I stitch client-side and server-side information gained from event tracking?

We have recently started to investigate some server-side tracking in my organization. I had a developer install the “theiconic” measurement protocol library for PHP and build a module for Drupal, that sends pageviews directly to GA. Works like a…
0
votes
0 answers

How can the client-side listen for anything outside the web page without the server-side?

What I want to do is use JavaScript (or some other client-side way) to listen for events occurring outside the web page without server-side help. It might look like this: // tester.js cses = new…
Lakshya Raj
  • 1,669
  • 3
  • 10
  • 34
0
votes
4 answers

Is using JQuery a good idea when the thing can be done with plain JavaScript easily

My ASP.NET WebForms project heavily depends on JQuery. An on some level, I find myself doing the following; $('#Message').hide(); Then I wondered why I wasn't using plain javascript there as…
tugberk
  • 57,477
  • 67
  • 243
  • 335
0
votes
1 answer

React Router Render from Browser URL

So I built a website using React but none of the routes can be accessed directly. The server that is hosting my react code is CPanel if that matters. I understand that for a route, such as www.website.com/about, the "/about" does not actually exist…
im2wddrf
  • 551
  • 2
  • 5
  • 19