Questions tagged [dynamic-content]

Web site or blog content that changes frequently and engages the reader. Dynamic content can include animations, video or audio. Tho opposite of 'static content'.

Web site or blog content that changes frequently and engages the reader. Dynamic content can include animations, video or audio. Tho opposite of 'static content'.

Client-side scripting is changing interface behaviors within a specific web page in response to mouse or keyboard actions, or at specified timing events. In this case, the dynamic behavior occurs within the presentation. The Client-side content is generated on the user's local computer system.

Such web pages use presentation technology called rich interfaced pages. Client-side scripting languages like JavaScript or ActionScript, used for Dynamic HTML (DHTML) and Flash technologies respectively, are frequently used to orchestrate media types (sound, animations, changing text, etc.) of the presentation. The scripting also allows use of remote scripting, a technique by which the DHTML page requests additional information from a server, using a hidden frame, XMLHttpRequests, or a Web service.

The first "widespread used" version of JavaScript was in 1996 (with Netscape 3 and ECMAScript standard).

A program running on a web server (server-side scripting) is used to generate the web content on various web pages, manage user sessions, and control workflow. Server responses may be determined by such conditions as data in a posted HTML form, parameters in the URL, the type of browser being used, the passage of time, or a database or server state. Such web pages are often created with the help of server-side languages such as ASP, ColdFusion, Perl, PHP, Ruby, WebDNA and other languages. These server-side languages often use the Common Gateway Interface (CGI) to produce dynamic web pages. Two notable exceptions are ASP.NET, and JSP, which reuse CGI concepts in their APIs but actually dispatch all web requests into a shared virtual machine.

Dynamic web pages are often cached when there are few or no changes expected and the page is anticipated to receive considerable amount of web traffic that would create slow load times for the server if it had to generate the pages on the fly for each request.

Ajax is a web development technique for dynamically interchanging content which sends a request to the server for data. The server returns the requested data which is then formatted by a client side script.

This technique can reduce server load time because the client does not request the entire webpage to be regenerated by the server's language parser; only the content that will change is transmitted. Google Maps is an example of a web application that uses Ajax techniques.

A Web client program (such as a web browser) can access data from many different servers, such as Gopher, FTP, NNTP (Usenet) or HTTP. The HTTP server was designed specifically for the Web, and employs a protocol (system of messages) that supports sending documents from the server to a browser, and that also support sending complex data from the client back to the server. There are several HTTP methods for doing this (in HTTP, method is a technical term for the way in which data are sent between a client browser and server).

All of the client and server components that collectively build dynamic web pages for one website are together called a web application. Web applications manage user interactions, state, security, and performance.

Source: Wikipedia

254 questions
268
votes
2 answers

Event handler not working on dynamic content

I have a tag A in which when clicked on, it appends another tag B to perform an action B on click. So when I click on tag B, action B is performed. However, the .on method does not seems to be working on the dynamically created tag B. My html and…
kkh
  • 4,799
  • 13
  • 45
  • 73
34
votes
6 answers

Display database blob images in inside

I'm using PrimeFaces 3.2 on JBoss 7.1.1. I am trying to display an image which is stored in a BLOB in a MySQL database in . The image is stored in a byte[] and then converted to a StreamedContent as follows: InputStream stream = new…
21
votes
2 answers

knockout virtual scrolling binding

KOGrid uses virtual scrolling to render content dynamically. I'm looking for something like that but more generic so it could be used for ul lists, Bootstrap rows, whatever. I saw something called giga-scroll, but I think it's gone now. The Git is…
Homer
  • 7,594
  • 14
  • 69
  • 109
16
votes
3 answers

htmlagilitypack and dynamic content issue

I want to create a web __scraper__ application and i want to do it with webbrowser control, htmlagilitypack and xpath. right now i managed to create xpath generator(I used webbrowser for this purpose), which works fine, but sometimes I cannot grab…
Chyngyz Sydykov
  • 430
  • 2
  • 6
  • 18
14
votes
2 answers

New ASP.NET Bundling Features - How can i programmatically refresh a certain bundle?

I'm mucking around with the new ASP.NET bundling features (using the System.Web.Optmization 1.0.0-beta pre-release) in my ASP.NET MVC 3 web application. Works great. However, we have certain dynamic CSS/JS which is stored in the database. I want to…
RPM1984
  • 72,246
  • 58
  • 225
  • 350
13
votes
4 answers

Filling an IFRAME with dynamic content from JavaScript

I have an IFRAME that should be filled with content from JavaScript. Had the content be on the server all I had to do is: function onIFrameFill() { myIframe.location.href = "HelloWorld.html"; } But the content I have is a HTML…
user256890
  • 3,396
  • 5
  • 28
  • 45
11
votes
7 answers

WARNING: JSF1091: No mime type could be found for file dynamiccontent

I get the following warning under eclipse : WARNING: JSF1091: No mime type could be found for file dynamiccontent. To resolve this, add a mime-type mapping to the applications web.xml This error is caused when I post a picture below primefaces…
Karim Oukara
  • 2,638
  • 8
  • 38
  • 51
10
votes
2 answers

Angular2 loading dynamic content/html in for loop

I have a json array which can contain either the component or the html selector for the component i want to load. I am trying to load this data inside a for loop. When I try to interpolate the value {{d.html}} it appears as plan text. When I use…
Chris
  • 1,299
  • 3
  • 18
  • 34
10
votes
1 answer

How to bind dynamic content using ?

I use the to display static PDF content. How can I change it to display dynamic content?
Venkat Maridu
  • 892
  • 3
  • 22
  • 45
8
votes
1 answer

Insert dynamic Angular 4.x content with known/declared components

I have a (what I think would be a fairly common) problem that I cannot find a good way to solve with the current Angular 4.x architecture. Maybe there is a method that I haven't found yet, but I have searched pretty extensively. I would like to…
arniebradfo
  • 1,141
  • 11
  • 18
8
votes
1 answer

How to load Doubleclick ads along side dynamic content

I have been trying to get Doubleclick ad tags to load with my dynamic content. I have a website which loads more content as you scroll down rather than having to go to the next page, back a page, etc. However I have been unsuccessful in getting my…
Rambomst
  • 653
  • 2
  • 10
  • 28
7
votes
0 answers

Append slides dynamically in Swiper slider in React

I am creating a new application in React. I want to use the swiper slider for the banners. The banners will be fetched from APIs. How do I append slides to the swiper once it reaches the last slide. I am using onReachEnd function to trigger the api…
Arijeet Bose
  • 150
  • 1
  • 7
6
votes
2 answers

Load dynamic content in Owl Carousel 2

I have a webpage with 2 carousels in which I have to show different items depending on user actions. The new data comes from the internet, I use fetch, parse the json into an array, all good. Only problem is I can't have the new items replace the…
Mugurel
  • 1,829
  • 3
  • 17
  • 26
6
votes
4 answers

How to update a selectonemenu depending on other one selected value?

I've been having a trouble trying to make my selectOneMenu content, depend on the value selected on the other. The content from the first one comes from a table in my DataBase and works perfectly, but the second one is supposed to come from another…
AlexLezama
  • 137
  • 1
  • 2
  • 8
5
votes
2 answers

Dynamic content in email templates

I have rails background and i'm working to implement something like as shown in the image My email template will have such tags. While sending the email to the client, his information will get filled up in the template. I found this link here but…
Aakanksha
  • 956
  • 1
  • 13
  • 26
1
2 3
16 17