Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
4
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~11.1K People Reached
Favorite Tags
Member Avatar for wonderland

Hi, My problem at the moment is a bit different than specified in topic title. I have an Iframe which displays .html file with js/ content slider when i click a link inside of that iframe I want for pop up window (greybox) to appear, but not inside of iframe …

Member Avatar for Airshow
0
287
Member Avatar for MrPixel

Hey folks, Long story short. I've been looking around all day for a script that would detect the height of one div (can't be predefined because of dynamic text content), and set a second div as that same height. I found a few forum topics about scripts I thought could …

Member Avatar for bulletcatcher
0
320
Member Avatar for Alxandr

I'm creating a xml-file from code using Linq to XML. The code is prety simple: [code=C#] XNamespace appvisumnamespace = XNamespace.Get("http://appvisum.com"); XDocument doc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), new XComment(""), new XElement("AppConfig", new object[] { (from section in this select section.ToXml()) })); foreach (XElement e in doc.Root.DescendantsAndSelf()) { if (e.Name.Namespace …

Member Avatar for Nemachtiani
0
171
Member Avatar for Alxandr

I didn't realy know where to put this post, so please bear with me... I'm starting a new project with two friends of mine using github for code-hosting (and of cause git for version controll). Also I'm using lighthouse for bugtracking. Github has a nice and fully integrated post-receive hook …

0
172
Member Avatar for nate22

I'm not good with AJAX but am trying to learn for this project. I've picked apart many galleries, some of which are kind of similar to this idea, but surprisingly I haven't found one that is actually just like this... [IMG]http://www.22graphics.com/slideshow-concept.jpg[/IMG] In case above image isn't loading or right side …

Member Avatar for nate22
0
92
Member Avatar for yaragalla_mural

Hi i am new to ajax and i am little bit confused with the word asynchronous. why is the word asynchronous used for ajax? what is it not in sync with? somebody pls expalin me why the word asynchronous? and how is it justified in ajax? Thanking you in advance.

Member Avatar for yaragalla_mural
0
329
Member Avatar for memory100

here is the question: 5. Write a basic program that allows the user to write names to a text file and read from the text file and displaying them on the screen. [CODE] string filename; StreamReader outputFile = new StreamReader("c:\\PriceList.txt"); // Read the first item. filename = outputFile.ReadLine(); // If …

Member Avatar for Geekitygeek
0
153
Member Avatar for brechtjah

Hey there everyone I'm a bit troubled with something I'm trying to construct, I'm trying to create an object that can reproduce itself, creating more objects that can be accessed also, to reproduce themselves. Each object would then be given a random name like: object1, object2 so they can be …

Member Avatar for Airshow
0
120
Member Avatar for manofspider

clienthint.js [CODE] var xmlhttp; var parameters=""; function showHint(url) { var myform = document.forms[0]; if (myform != undefined) { parameters = getRequestBody(myform); } if (url.length == 0) { document.getElementById("txtHint").innerHTML = ""; return; } xmlhttp = GetXmlHttpObject(); if (xmlhttp == null) { alert("Your browser does not support XMLHTTP!"); return; } xmlhttp.onreadystatechange = …

Member Avatar for manofspider
0
269
Member Avatar for psathish2

I am trying to disable the F5 key in Mozilla. I have the next code in javascript that it is working in Internet Explorer but it is not working in Mozilla. how can I disable the F5 key in Mozilla? Code: [code] function checkKeyCode(evt) { var evt = (evt) ? …

Member Avatar for Troy III
0
484
Member Avatar for samlabs821

Hi !! i faced problem with javascript. When I call function change() it applies only second element that is link2. I wanted when i click the link, the link name must appear to textfield.can anyone help?? here is code: [code=html] <html> <body> <form> <a id="static" href="staticContentAdmin.ioml">link1</a></br> <a id="static" href="staticContentAdmin.ioml">link2</a></br> <input …

Member Avatar for samlabs821
0
167
Member Avatar for marian99us

Hello folks, I am a young webdeveloper from Germany. There is this technology used in this great website that doesn't stop amusing me, I was just hoping someone could cypher the technology behind it and perhaps reveal it is done with the help of some freely available Library the link …

Member Avatar for Airshow
0
197
Member Avatar for ruwanaru

I am New in web designing What i want is i have one List/Menu its called Make it's containing some vehicles Brands when i selected a brand name i want another list/menu display the models that relevant to Brand this is a screen shot that what i need [IMG]http://i256.photobucket.com/albums/hh192/magnificent_roo/model.gif[/IMG] some …

Member Avatar for ruwanaru
0
718
Member Avatar for lakodajin

plz chk my coding n tell me whr I am wrong. [code=html]<html> <head> <title> My simple calculator </title> </head> <script language="JavaScript"> <!-- function addit() { var num1=document.calform.one.value; var num2=document.calform.two.value; document.calform.result.value=parseFloat(num1)+parseFloat(num2); } <!-- function minus() { var num1=document.calform.one.value; var num2=document.calform.two.value; document.calform.result.value=parseFloat(num1)-parseFloat(num2); } --> </script> <body>Add subtract Calculator <form name="calform"> <p> First …

Member Avatar for Alxandr
0
114
Member Avatar for Alxandr

I'm trying to create a simple application that is only supposed to be called by other applications. I've taken the concept from linux where you often have a application that depends on another, and then it does api-calls to that other application. The example I'm thinking about is libnotify which …

0
76
Member Avatar for krishnaboppana

how to add online chat for my new website, what i to do, ineed assistance from u ist stage last stage, thank! regards, krishna.

Member Avatar for Alxandr
0
94
Member Avatar for Kadjii

Hello again :) I am having a problem where I want to change a particular variable based on what parameters I send to a js function. In the code below, dnum is a number 1-6, and I want the global variable d1keep (or d2keep, d3keep etc.) to equal the dvalue. …

Member Avatar for Airshow
0
132
Member Avatar for Polar67

Hi y´all. I´m more than a little green at this and have been trying to get an understandig of Python. I came across WXPython and decided to try the first program in the tutorial by Fuze I´ve downloaded and installed python 2.6.3 and Wxpython 2.8.10.1. I´ve also got Python 3.1 …

Member Avatar for vegaseat
0
85
Member Avatar for ady_1

Hi, I'm new to this and have a quick question. I have a form called register.html and have javascript to check the form validation [CODE=html] <form <input type="submit" value="Submit" onClick="return formValidate()"> </form> [/CODE] so in register.html when user presses submit the formValidate method (javascript) is run. once it returns true, …

Member Avatar for Alxandr
0
116
Member Avatar for sidd.

[code] float[] x = new float[10000]; float[] y = new float[10000]; int c=0; using (StreamReader sr = new StreamReader("e: \\CuPeak.dat")) { while (!sr.EndOfStream) { string s = sr.ReadLine(); string[] variables = s.Split(' '); x[c] = float.Parse(variables[0]);//run time ERROR in this line " format exception was unhandled" y[c] = float.Parse(variables[1]); Console.WriteLine(x[0]); …

Member Avatar for kvprajapati
0
195
Member Avatar for jk8204

my assignment is to retrieve data from a txt file and output how many tests were input, average of all the tests, and then list the letter grade beside each text what i have so far: [CODE] private StreamReader strRead; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs …

Member Avatar for Alxandr
0
242
Member Avatar for Alxandr

This is a simple code-snippet that can be used to parse dates with javascript. It's setup to use European dates (dd.mm.yyyy | dd/mm/yyyy | dd,mm,yyyy), but it can easily be setup to use american dates as well (mm/dd/yyyy etc), to do so simply replace "$1" with "$2" and "$2" with …

0
321
Member Avatar for Kadjii

Hi, I am trying to code a game program in js that will allow the user to click on a "Roll Dice" button that calls a js function to randomly display various images of dice. My problem is that I cant find a way to display the images where I …

Member Avatar for Kadjii
0
103
Member Avatar for hno

HI I want to write a search for my site .I make a new panel in the left of my menue and it has a text input and an image which when that user click on it javascript opens a new window which is a php page.The part I don't …

Member Avatar for Alxandr
0
90
Member Avatar for thenajsays

im trying to add a star rating system to a website. id like to do something elegant graphically instead of just using a drop down... the javascript framework im using is mootools and i found a great rating system [URL="http://birijan.com.np/?q=mootools+star+rating"]here[/URL], but have no idea how to adjust it so that …

Member Avatar for Alxandr
0
126
Member Avatar for Altairzq

I'm showing in a field the name of the file the user has chosen. I would like to show the whole name as the title when passing the mouse over the field, in case the name is too long. I swear this was working, but it's not anymore (I'm testing …

Member Avatar for Jupiter 2
0
259
Member Avatar for Alxandr

I get an error trying to parse som XML. The error is [icode]System.Xml.XmlException: Root element is missing..[/icode], and I can't understand why. Here is the code I run: [code=C#] MemoryStream xmlStream = new MemoryStream(); StreamWriter xmlStreamWriter = new StreamWriter(xmlStream); String xml = "<html>\n<body>\n\n<h1>My First Heading</h1>\n\n<p>My first paragraph.</p>\n\n</body>\n</html>"; xmlStreamWriter.Write(xml); xmlStreamWriter.Flush(); XmlReader …

Member Avatar for Alxandr
0
3K
Member Avatar for ayusman.mohanty

Hi, Even I am trying the browser close event for cross browser and this should trigger only when X button is clicked or page is refreshed. Here's the code pasted above which I am using but it only works in IE. I know the issue is because of window.events and …

Member Avatar for ayusman.mohanty
0
531
Member Avatar for wonderland

Hi, I'm sorry in advance if this is the wrong section. I wanted to know is it possible to password protect some files in web page ? For example, If someone wants to download file, browsers requests password(one for all visitors), idea is that some files and/or sections of web …

Member Avatar for Alxandr
0
1K
Member Avatar for kaankucuk

Hi I am an turkish student trying to got understood of java ajax complition.. I have checked out the hole threads but cant see or ı have missed it up. SO here is my problem. I have a blog in blogspot. so in an post. ı want to do something …

Member Avatar for Alxandr
0
89