15,694 Topics

Member Avatar for
Member Avatar for M.Waqas Aslam

hello EveryOne! i am very new in JS and JSON , or you can say this is my first day to learn something about JS and JSON, i have few questions 1- what is difference between JS and JSON. 2-My Task is to connect MSSQL server 2008 and show records …

Member Avatar for M.Waqas Aslam
0
141
Member Avatar for kincaid

Hello everyone - new member here! I have a javascript function for creating an 'add bookmark' link on my pages. For firefox it uses window.sidebar.addPanel to add the bookmark [code] function addBookmark(title, url) { if (window.sidebar) { // firefox window.sidebar.addPanel(title, url,""); } else if( document.all ) { //MSIE window.external.AddFavorite( url, …

Member Avatar for atul.kushwah
0
857
Member Avatar for toplisek

I like to set trigger to show message board. Minus should be on the top left hand side after clicked on link and shown banner from the right to the left part (toggle). <a class="trigger" href="#">View all messages or reply</a> I post working code and need help. [CODE] <!DOCTYPE html …

0
77
Member Avatar for Johnbonono

I have a div with 2 divs inside it. The container div is positioned relative, and the 2 inside it are positioned absolute, one on top of the other (on the z axis). I made it so that when the mouse enters the container div, the top div slides up …

Member Avatar for ckchaudhary
0
203
Member Avatar for softDeveloper

Dear all, Context: JSP I'm trying to get the value of a java variable and assign it to a javascript variable in order to later on use it in an iframe: [CODE] ... rs.next(); entry1 = rs.getString(3);%> <SCRIPT> [COLOR="Red"] var tt="<%=entry1%>";[/COLOR] [COLOR="red"] var content = "<html><body>" + tt+ "</body></html>";[/COLOR] var …

0
104
Member Avatar for kris-kz

Hi co-programmers, We're currently doing a simple conversion of a jsp to java format. I think we we're able to somehow force our way for a java program to hold our jsp program, but unfortunately we are having a slight problem. We're getting this exception: Exception in thread "main" javax.script.ScriptException: …

Member Avatar for kris-kz
0
202
Member Avatar for oksam

This is my ajax script: [code=JavaScript]type: "POST", url:"getresponse.php", data: data, success: function(response){ uploadForm(response); } function uploadForm(response){ alert(response); $('#fileupload').uploadifySettings('scriptData',{'response': response}); }[/code] the alert function does show the right value of response but for some reason the value of response is not sent as POST. Funny thing is if I change {'response': …

Member Avatar for diafol
0
71
Member Avatar for MattWhitehead__

Hello, I'm having trouble with a webpage that has multiple CSS. The issue is the jQuery on the page, which doesn't work. The page I'm trying to get to work; [url]http://www.sahara-online.co.uk/demo/News.htm[/url] So does anybody know what to do? - some help would be much appreciated. Thanks Matt.

Member Avatar for ctaylo21
0
212
Member Avatar for Pankti Desai

I am looking for a way to achieve the layout shown below using CSS or any other method that can accommodate the design and implementation. The "top" portion is a fixed area. The "left" area will be a list of text links that target to the "main" area.To be more …

Member Avatar for Philippe.Lahaie
0
110
Member Avatar for Waldema

Hi! I'm building website of my own and got a little problem. My home.php is based on image, which contains certain areas to be links to the other areas. I'm trying to use <map> and <area> elements creating the links. Basically code is working just fine, but when I added …

Member Avatar for jackbauer24
0
183
Member Avatar for aidanmack

Hi, I'm trying to load some xml in using ajax. But my xmlhttp status is always 0. The status never comes through as 200. I dont actually no what 0 is equal to. I could find anything when I looked that status up. My script looks like this... Could someone …

Member Avatar for aidanmack
0
339
Member Avatar for h5ron

Hello, I've been searching for a way to log whoever print screens my website by IP address. So for a quick example, if someone pressed the print screen while on my website their IP address would written a separate .txt file along with the time etc. Is this possible at …

Member Avatar for stbuchok
0
69
Member Avatar for tqmd1

Dear Experts, I have following codes [CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <META content="text/html; charset=windows-1252" http-equiv=Content-Type> <META name=GENERATOR content="MSHTML 8.00.7600.16912"> <style type="text/css"> .back {clear:both;width:100px;height:30px;padding:5px;color:green;font-style:bold;} h3 {color:blue;font-style:bold;BACKGROUND: url(hotmail2.jpg) no-repeat center #90bade;line-height:30px;} #box {width:275px;height:275px;padding:5px;margin:5px;background:#e3eeff;text-align:center;border:1px solid #069;} </style> <script type="text/javascript" src="jquery-1.7.1.js"></script> <script type="text/javascript" src="jquery.corner.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('input[name="RD"]').click(function(){ alert("Please note …

Member Avatar for tqmd1
0
119
Member Avatar for stroper

We have to make a little webshop in HTML, Css and javascript. Everything but the div's are to be made in JS, also the table's we can't make them in HTML. In the left (Links div) we make a couple of links, in the middle div (dynamicLeft) we have to …

Member Avatar for Easyrider439
0
156
Member Avatar for Joe34

Here is my code... [CODE]function buildTimer(second,minute,hour,day,month) { if(getCookie('day') == "") { setCookie("month",month,1095); setCookie("day",day,1095); setCookie("hour",hour,1095); setCookie("minute",minute,1095); setCookie("second",second,1095); } var d = new Date(); var curr_month = d.getMonth(); if(month >= curr_month) { year = d.getFullYear(); } else { year = d.getFullYear()+1; } var Bday = new Date(year, month, day, hour, minute, second, …

Member Avatar for Airshow
0
126
Member Avatar for rotemorb

Hello I'm quite new to Jquery, so bare with me please. I've searched google, but I couldn't find an answer to my question. I'm developing an asp.net 4.0 application, and i wrote a Jquery inside my content page: [CODE] $(document).ready(function () { $("#Button1").click(function () { alert("Hello"); }); }); [/CODE] I …

0
69
Member Avatar for softDeveloper

Hi all! Does anybody know a cool and cheap site where I could host my web application (jsp+Mysql)? Thanks in advance! Kind Regards

0
115
Member Avatar for minitauros

Hello there, I'm running into a minor problem. I want to execute an onKeyUp action after a short delay when a key is released. So for example when the user gets his finger off the "y" button, I want to execute an action related to that "Y" after 1 second. …

Member Avatar for Seesharp
0
6K
Member Avatar for glut

Hey, I'd like to read a file from the server, by any means necessary. As long as I can use something like JavaScript, like it has to be client sided. No server sided scripting language. If there is no way to read a file from the server, is there a …

Member Avatar for glut
0
116
Member Avatar for jbutardo

Hi, I just have a program that needs a dialog box, but I have problem since I want the dialog box to do something. for example, I have a javascript dialog box that would create a message "You have an error, Do you want to save the Log File", Then …

Member Avatar for jbutardo
0
141
Member Avatar for 3825

Here is a snippet from my _layout.cshtml file from one of the projects I am involved with... [CODE]<link href="@Url.Content("~/Content/themes/ohl/jquery.ui.all.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.ui.selectmenu.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery-ui-1.8.16.custom.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.checkbox.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.safari-checkbox.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.autocomplete.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/PagedList.css")" rel="stylesheet" …

Member Avatar for 3825
0
233
Member Avatar for teamjea

When I in FF send an updated textarea text for database update I do not get the current value, but the old value. I use jquery, and as far I can tell there is nothing strange in the code, thd DOM is loaded etc. When I do the same in …

Member Avatar for Troy III
0
135
Member Avatar for cambraydesign

I have an RSS feed that is called using javascript. What I would like to happen is that the information gets displayed as html when you view source instead of the javascript. Here's the javascript: [CODE] <script type="text/javascript" onload="$('div.rssBody').vTicker();"> $(document).ready(function () { $('#ticker1').rssfeed('http://feeds.bbc.co.uk/iplayer/highlights/tv',{}, function(e) { $(e).find('.homepageupdates').vTicker(); }); }); </script> <div …

Member Avatar for cambraydesign
0
236
Member Avatar for kristo5747

I built a very simple app using a PHP form with a bit of Javascript. In my form, I have a text input which I used to run a database search. In case I have multiple values, I have a bit of code that puts a comma in between each. …

Member Avatar for Troy III
0
176
Member Avatar for toplisek

I like to set trigger on Jquery based framework. [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Trigger scroll</title> <script type="text/javascript" src="jquery.js"></script> </head> <body> We have found an error on your page with form. Please modify this input field.<a id="scroll" href="javascript:void(0);">Please go go to …

Member Avatar for stbuchok
0
181
Member Avatar for mingis

Hey, I've been scratching my head over this all day, would be most grateful for any help. Basically I have two links (in an unordered list). I would like each link to load a form onto the same page. I have no problem loading the HTML content and displaying the …

Member Avatar for mingis
0
312
Member Avatar for Thevenin

Hi all I'm trying to have some jQuery movement on my HTML page. I have a div that I want to move from right to left, and another one from left to right. This is what I did: [CODE] #rectone { background: #0000FF; height: 10px; width: 100px; float:right; position: absolute; …

Member Avatar for Thevenin
0
187
Member Avatar for ivanichi

I want to create a button to be executed and produce: a warning and if the click OK to go to another page. look at my javascript code, I've made ​​but I do not know [COLOR="Green"][U]where to put such a target="_blank"[/U][/COLOR], anyone please help me. thanks. [CODE]<script language="JavaScript">alert('Thanks'); document.location='kuitansi.php?id=<?php echo …

Member Avatar for Airshow
0
93
Member Avatar for Philippe.Lahaie

hello, i figured this forum was more appropriate for this thread than the javascript forum, here is why : my javascript is functionnal, and does not set/change css rules of the objects i manipulate. But here is my problem, i have 2 dynamic listbox (selects with size 10ish) with 4 …

Member Avatar for Philippe.Lahaie
0
175
Member Avatar for geneh23

Hey everyone, So I am making a sample website for now and will be uploading it when I can but I want a "lavalamp" style menu..however I can't seem to get the hover "slide/float" to work right..it shows the menu bar but wont show the hover effect..can anyone help me …

0
71

The End.