client-side

Save the document generated by javascript.

Javascript can manipulate the document the browser is displaying, so the following: <script> document.write("<table><tr><td>Hola</td><td>Adios</td></tr></table>"); </script> Will make the browser display a table just like if it was the original HTML document: <table> <tr> <td>Hola</td> <td>Adios</td> </tr...

Is there a light-weight client-side HTML include method?

I'm looking for a light weight method for client-side includes of HTML files. In particular, I want to enable client-side includes of publication pages of researchr.org, on third party web pages. For example, I'd like to export a page like http://researchr.org/profile/eelcovisser/publications (probably just the publications box of tha...

Understanding AJAX.

Having been primarily a server-side programmer(ASP.NET WebForms) I'm trying to get my mind wrapped around AJAX outside of the "catch-all" approach of using UpdatePanels in the Microsoft AJAX controls. My question has a couple parts: Is JavaScript the only option for client-side scripting that will support server-side communication? I...

Can Python be used for client side web development?

If yes are there any frameworks/Tutorials/tips/etc recommended? N00b at Python but I have tons of PHP experience and wanted to expand my skill set. I know Python is great at server side execution, just wanted to know about client side as well. ...

How do you store an image(itself not the path) in a javascript varialble and then render it to the web page using javascript also (all process shoul be client-side)?

Hello, all, I am trying to find out a way to put a small jpg inside a javascript variable so that it can be rendered to the webpage. Even though i think this should be possible i don't exactly know how to go about this. So all should happen in client-side. Does anyone know how to do this? Thanks in advance Mario ...

Client-side validation breaks in IE because of PropertyProxyValidator and ScriptManager cooperation.

The specific of the project is in using Enterpise Library for Server side validation and jQuery for client-side validation. So I have the next simple form for example: <asp:Content ID="_mainContent" ContentPlaceHolderID="MainContent" runat="server"> <script src="../../../Scripts/jquery-1.3.2.js" type="text/javascript"></script> ...

Will client side performance improve if images/scripts/styles on different subdomains?

Hi, I have a domain specifically for static content, so cookies don't travel along with requests to images/scripts/css. Now, I think I've read somewhere that most browsers only open one download thread for each domain/subdomain, so different static content can't be downloaded in parallel if on the same domain. Will it make difference fo...

Using client side certificates with objective-c under macosx with Cocoa

I am looking for sample code or documentation on how to use client side certificates with SSL under MacOSX. The server I want to connect to, does speak a custom ascii protocol but allows only ssl connections with registered client certificates. I already wrote a client in Java that works. In Java I initialized a SSLContext with a Ke...

.Net Client DLL Delivery Question

I have a .Net DLL that I created that implements a WCF client that talks to a WCF service, allowing the end-user to pipe data to the server where the service resides. I use this DLL in client programs I developed for work, but now I wish to use this .Net DLL in a web page so the client can be delivered to an end-user on the net. ASP.Ne...

Generating thumbnails of the webpages visited on a client side

Hi, I developing an extension - firefox so with this extension i keep track of the pages the user visits and now what i want to do is, i want to be able to popup a thumbnail of the webpage when the user hovers the mouse over the link. i have done that using third party websites for generating thumbnials such as http://images.websnapr.co...

Client-side SSL theoretical question

I work at company X and we want to engage in a B2B transaction with company Y. In doing so, Y is requiring client side authentication; they already provide server-side authentication - so this would be a mutual SSL transaction. My understanding is that I simply need to provide my CA-signed cert as part of my client side HTTPS communica...

ASP.NET MVC 2 Preview 2 - Client-side validation with JS at the bottom

I've just run across an annoying "feature" of the Client-Side Validation that I'm wondering if someone with better js understanding than myself might be able to solve. YSlow recommends that javascript be loaded at the end of the page. All good. Add the references to the required .js files at the bottom of the Site.Master and all is good...

How can I send an auto-generated email every x-days with php mail(), without access to cron?

Hello, I am trying to send an email, via php's mail function to user's every 15 days to remind them of a particular item (no worries, nothing spam related). I unfortunately do not have access to cron, so I think I would need some sort of client side solution (is this correct?). A link to get me started or a general outline of what I n...

Client Templates and Ajax 4.0 And Urls

Client Templating And URL's Title is required Im trying to output <a href="{{ link }}">click me</a> the data in question is spotify:track:0ucyXpQG7xL8ipoyU0Ts3A , once I remove the ":" the link comes through, any ideas on this one? As you can probably guess I'm trying to trigger the spotify protocol handler. ...

Best practice for filtering items client-side with JavaScript, hide or remove from DOM?

I have a relatively large dataset of items (a few thousand items) that I want to navigate by applying a number of filters client side in a web application. Applying the filtering logic itself is not an issue, the question is about which method to use for updating the table of matching results to get the best user experience. The methods ...

Can I modify or add cookies from JavaScript?

Exactly what are the restrictions for handling browser cookies from javascript? Can I check if cookies are enabled for example? ...

Load and run an EXE file after a website loaded

Is there a way to load and run an EXE file on the client side, after a webpage has been loaded ? [with java script or HTML ] ...

Is it possible to create a purely client-side GWT application?

I'm fairly familiar with GWT - having completed the Eclipse-based tutorial. But the tutorial runs in client-server mode. My question is: is it possible to create a GWT application that completely runs client-side, where javascript/html is generated but there is no reliance on backend java classes? I understand that the full breadth of...

What does Flickr use for charting?

Recently I was browsing my Flickr account and the stats for it and noticed that they display a very nice chart. What made an impression on me was that it was rendered in HTML and used JavaScript for mouseover effects. Does anyone know if they used some third party charting component, or if they did it in-house? If they did use something,...

What is the correct terminology for web service client app error handling paradigms?

I am trying to research error handling paradigms in web service client apps. I haven't found any good results on Google - perhaps I'm not searching using the right terminology. I will describe my imagined approach to error handling below. Can you name it? Lets say our application is like iTunes but online. The user runs a JavaScript bas...