15,127 Topics

Member Avatar for
Member Avatar for Coderunner

Hello, I have a problem with setting a cookie. People can hide or show background but when they go to another page of the website this needs to be remembered so I need to save it in a cookie. My code so far is <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 …

Member Avatar for Coderunner
0
230
Member Avatar for riahc3

I have this line: document.cookie =textbox+this.getParameterByName("idProd")+'='+document.getElementById('name').value+'; domain=mydomain.com; expires='+dia.toGMTString()+'; path=/'; This cookie should work on the mydomain.com and all of its subdomains to read and write, correct??? Doesnt work online but works on local thats why I ask. Thanks!

Member Avatar for pritaeas
0
72
Member Avatar for adige72

I have an input text and want it to suggest **custom taxonomy terms** as soon as i type on it. These codes below i found after some googling, gives the idea about how to use autocomplete method in WP but i can't figure out how to achieve custom taxonomy terms …

Member Avatar for blocblue
0
1K
Member Avatar for veledrom

Hi, I have a few buttons to manipulate selected text in textarea but cannot work out how to do it. I mean I tried some examples on web but they are not really cross-browser compatible. If one work then another wont etc. Can anyone help me modify what I have …

Member Avatar for veledrom
0
191
Member Avatar for baig772

i have an alert box which i want to show some icelandic text but its not showing it <script> function check() { alert("Þú verður að vera skráð/ur inn til þess að senda skilaboð"); } </script> it is showing the alert box but the text is messed up :( **Þú verður …

Member Avatar for baig772
0
246
Member Avatar for trektrak

I have this qoute.. how am i going to refresh only the php out;.. which generally generate xml.. <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title>Google Maps JavaScript API v3 Example: Common Loader</title> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript" src="util.js"></script> <script type="text/javascript"> var infowindow; var map; function …

0
111
Member Avatar for jpadgett230

Hello, I can't figure out how to pass the values from dojo to a new php page. This is the meat of the dojo code that I did not write, I don't know dojo. I have another page that includes libraries and has the code that creates a form for …

0
129
Member Avatar for zahidpugc

Hi All, I have 1000 divs and 20 are visible and remain all are hidden ,onclik jquery event, I want next 20 divs are visible and so on.Can anybody hep me? Thanks! Zahid

Member Avatar for rvcT
0
1K
Member Avatar for dany12

Hello I want to chnage the background to the latest radio btn clicked like in the atached image I have made somecode but this is not doing the job I have strated like this `jQuery(':radio:last:checked').length`I thought that by this way I will get one result and I was right then …

Member Avatar for dany12
0
448
Member Avatar for teedoff

Ok, I have some sorting/drag and drop code that works fine as far as that basic functionality goes. I need to be able to serialize and save the sorting order to send back to the set method for the database. Here is my js: <script language="JavaScript" type="text/javascript"> $(function() { $("ul.droptrue").sortable({ …

Member Avatar for teedoff
0
310
Member Avatar for TheVendor

Hi there, I am trying to customize a Woothemes shortcode toggle in their 'Canvas' theme, and in my particular case I have two toggles on my Wordpress page. One toggle shows by default, the other is hidden. What I want to do is switch those toggle states around (open the …

Member Avatar for TheVendor
0
666
Member Avatar for mogaka

function name_loop(){ var names_array = []; $('.name_class').each(function(index){ names_array[index] = $.trim($(this).val()); }); return names_array; } the problem with the above code is that it returns only the first element and not the specified array. can someone solve it for me

Member Avatar for JJenZz
0
107
Member Avatar for helenc

Hi there, I'm having trouble getting a rotating image script working on a site. Unfortunately it's not displaying correctly in Firefox or IE9 and I need some help to fix that and wondered if anyone would be kind enough to help please? It seems to get stuck on the Sharpie …

Member Avatar for dany12
0
212
Member Avatar for willjohanz

<html> <head> </head> <body> <img src="blue hills.jpg" name="slide" width="350" height="300"/> <script type="text/javascript"> var image1=new Image() image1.src="Sunset.jpg" var image2=new Image() image2.src="Winter.jpg" var image3=new Image() image3.src="Blue hills.jpg" var image4=new Image() image4.src="turf.jpg" var image5=new Image() image5.src="white.jpg" var step=1 function slideit() { <!--if browser does not support the image object,exit.--> if(!document.images) return document.images.slide.src=eval("image"+step+".src") if(step<5) …

Member Avatar for Troy III
0
360
Member Avatar for umcookeg

Hi, I have been working on trying to figure out, how I can get a web page to call a PHP function and have the results returned to the client for processing, for about two weeks. I hope I am in the right forum (ie. Javascript). I will also post …

Member Avatar for rajeevphp2011
1
2K
Member Avatar for Aleroth

Hi there, I have a Country/City list in my SQL database and access it with PHP using a select element in php. I use the Chosen Jquery Plugin for the styling of these select elements. Now my problem is that i want only the cities of the country selected to …

0
133
Member Avatar for PurpleHeaven

Hello, I used a plugin from CSS-Tricks.com which is located here: http://css-tricks.com/downloads/ It's an Infogrid Accordion. It's working very well, but I'm having problems with the position of the columns. At first, all of them are in the middle, but when I clicked a column, all the others will stack …

0
168
Member Avatar for richcc88

Hi all, I am using the below code to control the attributes of a jQuery slider on a website I am building. I need to make the following function change based on window size/re-size to make the slider resize and be responsive. Bit of a newbie when it comes to …

Member Avatar for diafol
0
220
Member Avatar for UNoHu

I have put together what I believe my homework assignment is asking me to do, but I can't get the form to add the vehicle information. Here is the code. Can someone help me get onto the correct path? Thanks <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> …

Member Avatar for UNoHu
0
177
Member Avatar for BadManSam

How could I use ajax or javascript to make that when I click on a button that links to another page make it go to that specific page without refreshing so like the url changes to something like index.php?=2

0
56
Member Avatar for cgull

Hello, I am trying to create dynamic dropdown lists with PHP MySQL and AJAX. When a user selects a category from the first dropdown, the subcategory dropdown should populate with all the sub categories that belong to the selected category. I am using Fuel CMS as my framework. In my …

0
90
Member Avatar for LogicWeb

I'd like to apply a global site-wide little javascript window on the very bottom right of the site that will display a window about 40 x 80 wide, just a book icon and the word "Bible", where when a person clicks it, it will open a pop-up window, centered and …

Member Avatar for JJenZz
0
95
Member Avatar for arcticM

I'm on the first chapter of a book "head first ajax" and I wrote the exact code the book says and it just won't work! there are 4 thumbnails pics on my page (in div id=thumbnailPane) and when u click on 1 of the pics there should be displayed a …

Member Avatar for arcticM
0
223
Member Avatar for lakshay21

Its really good to see that someone has converted JpegCam( project to integrate webcam in a web page [Click Here](http://code.google.com/p/jpegcam/)) php code into java[Click Here](http://ashwinrayaprolu.wordpress.com/2011/05/26/capture-picture-on-webpage-with-java-backend/).. I am also building an application in which i have to use web cam on CLIENT SIDE and store the images in DATABASE on SERVER …

0
70
Member Avatar for prem2

Dear all, I am new to javascript.I have a little doubt in basic concepts in javascript. //Example Program class classname(){ //Decalaring Properties var length; var abcd; public function toUpperCase(){ //This Method is used to convert the strings into uppercase } public function toLowerCase(){ //This Method is used to convert the …

Member Avatar for Troy III
0
208
Member Avatar for raviaaaa

HI All my requiurement is: I am getting list, list consists of follwing id assetid name assstatusid seriescode matchedstring 10 1 ab 3 34 match1 11 2 some 3 67 mat 12 3 name 3 678 matchstring 12 3 name 3 678 matchstringone 12 3 name 3 678 matchstri 12 …

0
142
Member Avatar for Mike_H

Below is a sample code using the [URL="http://developer.yahoo.com/yui/slider/"]YUI Slider Control[/URL]. How can I get the photo to zoom in and out proportionally as the slider moves up and down? P.S. I am open to any existing working scripts. I have not been able to find any that does a variable …

Member Avatar for jansiranir
0
261
Member Avatar for bcpaul

have a calendar with individual divs for each day. Each div has a unique ID. A modal dialog pops up when the user clicks edit image. The user can set the payable hours in the modal dialog and I want those hours that are entered in the dialog box to …

0
77
Member Avatar for Nikhar

I am a newbie, in crafty as well as js, so pardon me if I might have made very silly errors in the following program. What is wrong with the following code? The following code is supposed to create 5*5 matrix where each block would be a 60 pixel high …

Member Avatar for Nikhar
0
220
Member Avatar for garyrichard

I want to load three list boxes where 2nd list box is loaded on the basis of selection of 1st list box and 3rd list box is loaded on the basis of selection of 2nd list box.. .

Member Avatar for veedeoo
0
571

The End.