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

How to find client-side code that crosses its hosting domain

Is there a way to identify client-side code, within an entire code base, that initiating a cross-domain operation? E.g., identify proprietary code that uses an NPM package that crosses the domain by issuing calls to a different domain. Finding the…
0
votes
2 answers

ClientSide ActionLink for Telerik Grid

What am trying to achieve is to get a jquery modal popup from the existing code - through ActionLink in telerik grid, but am missing the syntax, if someone could help out please this actionlink works perfectly bringing out the Modal. <%:…
Darren
  • 1
  • 2
0
votes
1 answer

Dynamic generation of web form by client

I want to know the best way to implement a functionality, i.e., dynamic generation of web form on the client side by the user on my PHP web application? Also is there any readymade code or any API availale for it? Drag n Drop interface would be…
6nagi9
  • 534
  • 2
  • 7
  • 23
0
votes
1 answer

Complete (or semi-complete) list of asp.net control client side events?

I would prefer that my asp.net pages be a bit more user responsive, so I'm adding Javascript events events to the asp.net controls. I've found some of the more obvious events by searching around, but I'm wondering if anyone knows of a good reference…
SunfiShie
  • 396
  • 1
  • 3
  • 11
0
votes
1 answer

How to get file from input tag in react client side app

I am creating a react app that downloads youtube videos when given their URL. I am using this npm package to help download the files. I keep on getting the error: TypeError: fs__WEBPACK_IMPORTED_MODULE_3___default.a.createWriteStream is not a…
zac5482
  • 99
  • 10
0
votes
1 answer

How to deploy Angular front end only application to AWS (S3 or any other) generated using Jhipster?

I have generated application code separately for front end (Angular) and back end (JAVA) using Jhipster. I know how to deploy JAVA to AWS, but I am not sure about Angular application. For a normal angular app, I would build using ng build --prod and…
0
votes
1 answer

my sapUI5 app only jumps once into my print method

this is my very first question on Stackoverflow. I am currently developing a print function in my sap ui5 app to print out certain UI controls. I've got the function from here: http://embed.plnkr.co/jjyEPa1updkjBiNZqumS/preview However, during…
J K
  • 1
0
votes
3 answers

How to protect a client side JavaScript variable?

Using the following function to check the existence of a given URL. The code is executed on the client side (browser), is there a way (if at all possible) to protect the url variable from being altered with the browser debugger while keeping the…
flowb
  • 30
  • 10
0
votes
2 answers

React life-cycle method componentDidMount() not working

I am very new to React and currently working on this hackernews app. I am following the instructions given in the book "the road to learn react" to build this app. However, the react life-cycle method componentDidMount() does not seem to be working…
0
votes
0 answers

Is it a best practice to make setInterval every some seconds to re update axios request to update displayed data in vue project?

I have created a Vue app and I have many requests to get data from the database using Axios but if data updated on the server side it will not be updated on the client site in my Vue app, so I made a setInterval every 10 seconds to update the…
0
votes
1 answer

Appcelerator Python Application Requires Silverlight?

Something that I couldn't understand from appcelerator website: If I use appcelerator to write a client-side python application for the web, will it require that users have silverlight installed on their machines?
Sunny88
  • 2,860
  • 3
  • 24
  • 25
0
votes
1 answer

Uncaught TypeError: $(...).makeRed is not a function

I want to call custom javascript function with jquery selector but this say Uncaught TypeError: $(...).makeRed is not a function

Hello Wrld

0
votes
3 answers

Countdown clock issue

I am using Keith Wood for a cool countdown clock and am noticing some off behavior and was looking to see if anyone could nail it. The clock seems to pause after watching it count down for a while. It seems to track the right time but as you will…
Quotient
  • 3,925
  • 6
  • 31
  • 35
0
votes
0 answers

Client-Side vs Server Side

Which is better to Accessing and displaying data from an external API for a website? I am writing a school report and I am trying to understand the benefits and drawbacks of each when accessing and displaying data. Scope: jQuery, AJAX, JSON,…
Jay
  • 141
  • 3
0
votes
4 answers

Node.js JWT handling

I've started learning Node.js in the past few weeks, and I've finished a course of it. Sadly, the course didn't cover everything, this is why I came here. So, the course covers the handling of JWT in the server side, but it didn't mention anything…
kisroby
  • 3
  • 1
1 2 3
99
100