15,694 Topics

Member Avatar for
Member Avatar for ujjwal uniyal

Hello all!!! My Javascript menu is giving me some problems. whenever i hover the mouse over the menu the dropdown is hiding behind the javascript slideshow. can u plz help me out. Here is the link to the website. [url]http://www.sewaindia.org/[/url]

Member Avatar for ujjwal uniyal
0
53
Member Avatar for jfunchio

I have this code that displays a thumbnail strip and then when you mouse over a thumbnail a bigger images shows up over the strip. The problem is it only is working on some of them and only when the mouse is over a certain part of the picture. When …

Member Avatar for jfunchio
0
170
Member Avatar for govnah

Hi friends, i am trying to create a media gallery which will display images from a folder. I have sorted the images into a separate folders according to years i.e (2011,2010,2009). which i will be using as navigation. so far i've been able to list the folders in the directory …

Member Avatar for govnah
0
176
Member Avatar for gg3l

Hi, This is a demo of what I'm trying to do: [CODE]<html> <head> <script type="text/javascript"> window.onresize = resize; function resize() { if (document.getElementById('elm1').offsetWidth < 1000) { document.getElementById('elm2').style.width = 1000 } if (document.getElementById('elm1').offsetHeight < 600) { document.getElementById('elm2').style.height = 600 } if (document.getElementById('elm1').offsetWidth > 1000) { document.getElementById('elm2').style.width = "100%" } if (document.getElementById('elm1').offsetHeight …

Member Avatar for raphie
0
242
Member Avatar for 18engineer

i want the code of passing form elements with post in php with ajax.. i am trying a number of codes,but all in vain:( can anyone send me please, full code

Member Avatar for joehms22
0
151
Member Avatar for Metophase

Hey guys whilst I was trying to solve this issue I came across your thread which I found helpful to an extent, basically I spent hours reading up and realised that the solutions you provided doesn't do what you actually wanted it to do so here I offer my solution. …

Member Avatar for Taywin
0
251
Member Avatar for ndeniche

I'm developing a web app in which I have a file upload option. The thing is, my file input is hidden, and instead, a textbox and a button are used, in order to style the input, copy the file input's value and allowing the user write a link address into …

Member Avatar for ndeniche
0
335
Member Avatar for Frankey

I am retrieving a string in json format from a php file and assigning it to a var in javascript string = {"name": "piet", "id": "45"} how do i convert this string into a real json object?

Member Avatar for MartinRinehart
0
99
Member Avatar for Revlis

Hi all, So my task was to build basically photo-based department org-charts for a SharePoint 2007 environment. Not sure why I was asked to do this as the last time I web designed was when Netscape 4.0 and IE4 were still duking it out, but whatever. I inserted my images …

Member Avatar for Revlis
0
2K
Member Avatar for manjukakkadath

Im developing a script for dynamically creating html table structure so that from the input that has been given to the function it will fetch the values one by one and will create the structure. My problem is i want to add attributes to the elements created. sample code attached. …

Member Avatar for Taywin
0
165
Member Avatar for infernodeep

hi guys , im facing a small problem with javascript,it works fine in FF,but inIE6 & IE7 nothing is happening could anyone solve this problem....plz help me. Here is the HTML code: [CODE]<div id="div1" style="display: visible">Div 1</div> <select> <option onclick="javascript:changeDisplay('div1','block')">visible</option> <option onclick="javascript:changeDisplay('div1','none')">hidden</option> </select> [/CODE] Here is the JavaScript code: [CODE]<script …

Member Avatar for papiya
0
802
Member Avatar for manjukakkadath

how to create variable name dynamically? eg: if (test==1) var test1=1 if (test==2) var test2=2 here test1 and test2 should create dynamically. i tried var "test"+1. But throws error. Any idea?

Member Avatar for Taywin
0
37
Member Avatar for cdudefire

My assignment for my programming class is to create a script using JavaScript that asks a user to enter a number in a pop up dialog box on their browser, and then tell them if they entered an odd or an even number. This is what I have come up …

Member Avatar for sridhar_sam
0
2K
Member Avatar for Stefan_Lam88

[url]http://bxslider.com/[/url] Hi guys, refering to the above jquery bxslider.I wish to ask how to implement the public function of the code? destroyShow() Destroys the active slideshow reloadShow() Reinitialize a slide show regarding this two.. is it $("#test").bxSlider(<--characteristic-->).reloadShow()? now the situation is I got 2 sliders. after I implement first slider, …

0
60
Member Avatar for Eneswar

Hello, im trying to do a single html page with multiple checkboxes to hide/show text when checked/unchecked. I'm really bad at html but so far I have got this: The problem I have is I dont know how to add more checkboxes. Would appreciate some help. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD …

Member Avatar for Eneswar
0
554
Member Avatar for godfather21

i have installed ajaxcrud and i receive the following errors: Notice: Undefined index: customAction in C:\wamp\www\vidavo\datagrid\ajaxCRUD.class.php on line 18 Call Stack Notice: Undefined index: ajaxAction in C:\wamp\www\vidavo\datagrid\ajaxCRUD.class.php on line 33 Call Stack i have download it from ajaxcrud.com and the only thing i have changed was the username,pass and my …

Member Avatar for Taywin
0
60
Member Avatar for AODfan

Hello, I am taking a JavaScript class and I am currently on an assignment where my Professor wants me to create a dice roller program with the following stipulations: * Users can choose via form how many sides that they can choose from, between 2 and 100. * Dice are …

Member Avatar for Taywin
0
310
Member Avatar for hemanth.c

[ICODE]I have created a table using HTML and created a seperate hyper link to add extra columns dynamically. Now problem is that.. The changes are undone once the page get refreshed. Please give me solution about what I have to do to make the changes made by java script on …

Member Avatar for Taywin
0
214
Member Avatar for ktsangop

Hi there! I would like a little help regarding the following code. The following code will wait for a non-blocking socket connection, and then wait to receive a certain packet. When the packet arrives, it will do something and then close connection and reinitialize it in order to be able …

Member Avatar for ktsangop
0
389
Member Avatar for pankajjarial

[CODE]<?php include('connection/database.php'); require ('xajax/xajax_core/xajax.inc.php'); $xajax = new xajax(); function autocomplete($val) { if($val!="") { $query=mysql_query("select * from name where name like '".$val."%'"); $rows=mysql_num_rows($query); $out="<table width='100%' bgcolor='#bfbfc3'>"; while($data=mysql_fetch_array($query)) { $out.="<tr><td>".$data['name']."</td></tr>"; } $out.="</table>"; $objResponse=new xajaxResponse(); $objResponse->assign('div1','innerHTML',$out); $objResponse->script("jQuery:$('td').click(function(){ var a=$(this).attr('innerHTML'); $('#name').attr('value',a); $('#div1').attr('innerHTML',''); }); $('td').mouseover(function(){ $(this).css('background-color','gray'); }); $('td').mouseout(function(){ $(this).css('background-color',''); }); "); return $objResponse; } else …

Member Avatar for pritaeas
0
156
Member Avatar for jacob21

Hi,I am new to jquery n using below code for submitting data in database. Its working fine for small data but not working for large data. Need suggestions Php code: [CODE]<?php include('db.php'); if($_POST) { $name=$_POST['name']; $desc=$_POST['desc']; $price=$_POST['price1']; //$type=$_POST['type']; mysql_query("INSERT INTO `pgdetail` (`name`, `desc`, `price`) VALUES ('$name', '$desc', '$price')"); } ?>[/CODE] …

Member Avatar for Stefano Mtangoo
0
201
Member Avatar for 18engineer

i am learning php... i want to implement ajax with php.. can u tel me a good tutorial of implementing ajax with php? i have visited [url]www.w3schools.com[/url] but it provide a very basic intro about ajax and php... i need some implementation examples... Thanx

Member Avatar for Nick Evan
0
105
Member Avatar for Helinxed

Hello everyone,I need a help to back values from php to javascript... Listen: [CODE] __hasInventory = true; _iMatrix = []; $.ajax({ url: 'index.php?acao=test', dataType: 'script', type: 'post', data: {mode: 0}, success: function () {[/CODE] If is all Ok with post method,I'd like it back with results passing PHP results to …

Member Avatar for Helinxed
0
162
Member Avatar for Violet_82

Hi there, I am doing some jquery exercises and I was redoing a small script I saw onto this video (very very good jquery resource by the way) [url]http://blog.themeforest.net/tutorials/jquery-for-absolute-beginners-day-8/[/url] and there is something I am not quite clear about. I copied that onto my test area so I can post …

Member Avatar for Violet_82
0
157
Member Avatar for gyno

In my quest towards becoming a guru in [B]Web Development[/B] led me to start learning [B]Scripting[/B] few weeks ago and i started with [B]Javascript[/B] there is this video tutorial that i have on my drive which was putting me through, the going was good but i got stuck when some …

Member Avatar for jmichae3
0
123
Member Avatar for dougalmaguire

Hi all, I have region which initially needs to be fixed in a certain position. After data is returned to the page and the user scrolls down to the bottom instead of remaining in its fixed postion I want my region to float to the top of the page, if …

Member Avatar for dougalmaguire
0
114
Member Avatar for Aksel

Hi :) I'm trying to create a small javascript menu. I have 4 images which serves as menuitems. [code]<div class="myMenuButton"><img goes here /> <div class="myMenuContent"> Random content1 here <br /> Random content2 here <br /> </div> </div> <div class="myMenuButton"><img goes here /> <div class="myMenuContent"> Random content1 here <br /> Random …

Member Avatar for MartinRinehart
0
139
Member Avatar for GK2011

I have a problem - I need some help. I am having trouble with some coding. I have created a drop down list with the months of the year. Next to this I have created a button. What I want to do is when the user selects a month from …

Member Avatar for GK2011
0
125
Member Avatar for MadSkyrim

I have the following html file [CODE]<!DOCTYPE hmtl> <html> <head> <title> Minimum Spec Test </title> <script src="Compatability.js"></script> <script type="text/javascript"> var can, ctx; var img = new Image(); function Init() { can = document.getElementById('canvas'); can.width = 100; can.height = 400; ctx = can.getContext('2d'); img.src = 'Images/_test.bmp'; ctx.drawImage(img, 0, 0); } </script> …

Member Avatar for phoenix_2000
0
272
Member Avatar for HelenLF

I have a page with a slideshow which doesn't look too great in IE8 or lower. Is there a way to display different content for these browsers?

Member Avatar for phoenix_2000
0
103

The End.