15,127 Topics
| |
Hi. In my web site I have a jquery tab. When clicked a tab I want to show a div which writes loading [ <div class="loading"><p>Loading...</p></div> ] and hide it when the clicked tab content is shown. Is there a way to do this? Thanks. My code is below. <script> … | |
Hello I am having issues with a script.. I am trying to have an array carry a bunch of vimeo codes. What I want to do is make it so that when someone clicks a button created by the array they are able to see a vimeo script open in … | |
Hi, I want to append the content of an already defined "old div" tag to the "new div" tag dynamically but as I'm new to javascript i don't have any idea that how to do this. The code i tried is attached below. And one more question, how to remove … | |
Ok, so I am working a project where one of the last parts is to have a hidden field in the form to pass the product id with everything else in the url parameters. As of right now I have it setup to grab product info for an external file … | |
Hi Everyone, I already google this but wasn't able find any thing!.I just wonder if you can tell me where I can find a Jquery plugin which let the users to print a specific part of apage(let say a div for marks result!) as a pdf file? Thanks, | |
Hi friends i am having n number check box, if i checked one check box it has to select all the similar values of the check box and the other check box should be disable. can any one help me to solve the issue i am having a java script … | |
This is where my script is. Is better to see it in person [url]http://users.cjb.net/denks/main.html[/url] Why does it work on firefox and not IE? The green "wrapper" box is extended beyond what i set it to. Why did IE do this and what are the possiple areas i need to look … | |
| I don't know how to do this for Javascript, but I can explain in PHP as I have further experience in it. maybe someone can translate. A textbox's value is "username", and it needs a onclick javascript code that makes it 'this.value = ""' When users click the textbox that … |
I'm trying to use the Fb PHP SDK to execute different Js document.getElementById innerHTML functions, depending on whether the user is logged in to Fb or not. For some reason the function won't work for me. I know my API connection is successful, and Javascript can be inserted here, as … | |
Hey Guys my goal for this multi dimensional array is to document the answers (right or wrong) for a test that the user is taking. In the beginning the test array is set up. as the user goes throught the questions the app should add to the array. Note: the … | |
Dear Friends, I'm developing a website that can show online users, When ever a user logged we can update the status to "Online" On our database. Now i'm using AJAX. Is it possible to show the online users without refreshing a page ? That means timed interval for a ajax … | |
Hi all- I'd like to change the buttons below used to change images to links/images instead. Any help would be appreciated! Thanks. [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"> <head> <style> </style> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> <script type='text/javascript'> onload = function() { var buttonData = [ {src:'fareast.gif', href:'http://google.com'}, … | |
I have a simple question and I cannot find any definitive answers online or in any books that I have. So here is the question: Does JavaScipt methods work with any web page elements? I do have some guesses but I don't have anything to back it up, or confirm. … | |
Hi. I have a jquery tab in my site. I want to set class="current" when clicked a tab. How can I do that? Thanks. <script> $(function() { $("#tabs").tabs( { } ); }); </script> <div id="tabs"> <ul class="nav-content" > <li class="current first-li"><a href="#tabs-1">Tab 1</a></li> <li><a href="#tabs-2">Tab 2</a></li> <li><a href="#tabs-3">Tab 3</a></li> </ul> … | |
Im new to javascript so im sure there is a lot i am missing in its understanding. What i am trying to do it create a layer of images so that it looks like a pile of cards. have seen similar codes and have tried to follow their idea but … | |
dear all net visitors how can i create a frame in web page using html | |
hi all, I have script that sums all textboxes value from dynamically added row, but still i have problem with the script. below listed two version of script [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></title> <script type="text/javascript"> /*<![CDATA[*/ function addRow() { // grab … | |
Hi all, I have taken slide show script from net. But There some functions i cannot understand here is script [CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd" > <html lang="en"> <head> <title></title> <script> var interval = 1500; var random_display = 0; var imageDir = "my_images/"; var imageNum = 0; imageArray … | |
hello, I am using onclick ajax requests and innerhtml to give a site only partial page reloads. One of the page reloads links to an image gallery, where I am attempting to use fancybox. I have all the scripts properly linked and there are no syntax errors, but it (the … | |
I have a textarea where i want the user to just enter the values: $x $y $z $a $b $c (,),+,-,*,/ ^ Here what i have so far [CODE] Formula <textarea name="formula" onkeyup="check(this.value)" ></textarea> [/CODE] javascript [CODE] function check(formula) { ???? } [/CODE] Thanks in advanced | |
Please go through the below fiddle. I am trying to get the ids of the selected products in the fcbkcomplete box and show it as comma separated values in the textbox with id interest. I wrote a function to achieve that but i couldn't do it. The function adds the … | |
Hello, I am trying to create a series of links that will show an element and then open up up the a different element for each. I have it so that I can create on, but I was wondering if somone could help me figure out how I can get … | |
Hi every one, Can you please let me know how I can use Jquery to append and remove data into a table by checking and unchecking html checkboxes?(Or any plugin for this?) I would like to generate an online order invoice from the following checkboxes: [CODE] <fieldset> <legend>Your Choice:</legend> <input … | |
I am working on a web application and using the Google API for geo-location. I am using a localDB to store locations for now and displaying them using this: [CODE]function displayItems() { readItems(LocalDB, function(items) { var appendHtml = ""; for (var i = 0; i < items.length; i++) { appendHtml … | |
dear all net visitors & developers please help me? help help help, how can i create a frame in web page using html, | |
Hi I want to remove the first <LI> item and last three <LI> item from <UL> list. How to write code in JQuery. I need the below list [CODE] <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> </ul> [/CODE] as below result [CODE] <ul> <li>1</li> <li>5</li> <li>6</li> <li>7</li> </ul> [/CODE] … | |
Hi friends i am having n number check box, if i checked one check box it has to select all the similar values of the check box and the other check box should be disable. can any one help me to solve the issue i am having a java script … | |
please anybody tell me the difference between javascript and jsp. | |
Eclipse-JavaScript IDE has embedded all JavaScript Libraries like jQuery, MooTools, etc so applies code completion, to what ever is implemented, along with plain JavaScript? | |
Ok, first let me explain what I try to do. I have a menu with some items containing a submenu. The submenu's should open when a parent is clicked and contains submenu's, and when traveling to another page (from the item clicked, for example a parent of submenu item), the … |
The End.