15,120 Topics
| |
hi i am using tinyMCE editor(javascript) in php file .the data which is enterted in textarea is diplayed along with some script .plz do tell me how to avoid the script. eg: <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; … | |
i need a java script that should take pictures from a Folder and automatically play the slide show of these pictures when HTML page load......i need it urgently....plzzzzz help me | |
How would I be able to accomplish the attached image? I have seen ajax sliders around, however only 1 slider. Is it possible to include a 2nd slider to act as a "maximum" and the first slider as a "minimum"? If there are any examples I could look at, it … | |
Hello to everyone and Happy New Year. Is it possible to execute external files via event handlers?? I want from an HTML (including JavaScript) web page to execute external files via event handlers. What I actually want to do is to execute in the background some php files (and do … | |
hai sir.. Is it possible to connect mysql database with asp.net by using javascript code.. how to do gridview databind in javascript.. pls urgently need ur help.. eagerly waiting for ur solution.. sir.. thank u... | |
Hi all, I have integrated google maps API into a site as a store finder. However I'm at the stage of trying to plot thte driving directions between a store and a user input address. The stage I am stumped at is getting the driving directions to plot themselves on … | |
Hi all, I can not see the messages when other people enter in text but when I enter the text i eventually see the messages. What could I be doing wrong in my Javascript Code: [code=JavaScript]<script type="text/javascript"> function ajaxRequest() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new … | |
hi i am trying to check if the user select yes or no ..it dos work but it give me an error saying "object doesn't support this property or method" [code] { var o = document.getElementById('addyes'); var t = document.getElementById('addno'); if ( (o.checked == false ) && (t.checked == false … | |
This tutorial has been extracted from Packt's new book "[URL="http://www.packtpub.com/tutorial-for-building-interactive-interfaces-with-dojo/book"]Learning Dojo[/URL]". This chapter shows a number of examples from simplifying layout in general with 'CSS-less' layout managers, to dynamic loading of content in content panes, and how to create a wizard widget with a StackContainer and a small amount of … | |
Hello everyone, I've ran into something that's been confusing me. Here's my code snippet: [code] if (parent.scrollTop < parent.scrollHeight) { if(document.fireEvent){ //IE setTimeout("document.fireEvent('onmousemove')", 10); }else{ //FF var changeEvent = document.createEvent("MouseEvents") changeEvent.initEvent("mousemove", true, true); setTimeout("document.dispatchEvent(changeEvent)", 10); } } [/code] What happens in Firefox is when the [icode]setTimeout[/icode] fires, it tells me … | |
Hello, We have added a "recently viewed items" panel to the right side of our website. In this panel we simply loop through the array of viewed items and present them with a picture and a link stacked up in the panel. The code for rendering the list of items … | |
Hey, my friend sent me this funny java script, if you copy and paste it in the adress bar and hit enter it makes the links spin around, any one know how this works? [COLOR=black]javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=2.6; y3=.24; x4=100; y4=100; x5=300; y5=300; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; … | |
Hi everyone I having some cross browser issues with prototype's ajax.Updater I have a js function call chargeAll(), that calls the same chargeOrder() function using the ajax.Updater several times, with different order IDs. chargeAll is built dynamically, retrieving all the order IDs from the db. Here is the javascript code … | |
hello, I am novice in Ajax, i am trying to build an exemple using the Anaa(An Ajax API), but doesn 't work and i don t know why? i am using the Visual studio 2005 to builb it look at the example: [CODE]<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE … | |
hello. i've been working on a website and everything works/looks fine except when viewing the site with firefox on a mac... one of the pages has two frames that should work at the same time when a link is clicked on the page. however neither appear. i have another page … | |
Morning everybody. my question seemed simple but i have been trying (unsuccessfuly) for day's to solve it . i have a message in red saying my javascipt is disabled/limited fincionality only. i have lost search function/restore function. and i can't access my emails.i have googled this and recieved load's of … | |
Hi I am trying to do something with Jquery and Ajax But I am not sure that its possible or not. its an example about it [url]http://www.unikhas.org/design/index.jsp[/url] I want to save all the things after I desing my tshirt. Is it possible to do that in Jquery or Ajax ? … | |
it is required to develop text based chat application (Between two users). Core Tasks:- 1. Establish connection between server and client. 2. Make appropriate GUI. 3. Proper threading for sending and receiving messages Tasks Details:- Make a server on one computer and client on the other. When client wants to … | |
Hey everyone, I've just created a pop up window, but as opposed to launching it in response to a link I want it to launch with the home page. I believe I've seen it done, but don't know how it is done. Can someone assist, please? Thanks | |
Hi I have an Image Gallery on my site. When a user click on thumbnail image, a JavaScript function will load/change image on the imageView area. Here is the JS function : [CODE]<SCRIPT language="JavaScript"> function changeimage(img_name,img_src) { document[img_name].src=img_src; } </SCRIPT>[/CODE] Here is the ImageView area code : [CODE]<IMG NAME="imageloader" SRC="image_1051.jpg" … | |
I was wondering how I could create a bookmarklet that would take someone's current location (href) and redirect to another page with the href as an "argument" to part of a new url. For example: 1. Someone goes to a webpage, decides to click on the bookmarklet. 2. The bookmarklet … | |
Looking for an example to fit into a demo I am doing... I'd like the user to be able to enter text and click search using POST method Once the next page has loaded, display that variable using GET Only in AJAX please. Thanks in advance for your help. | |
Hi , I have an ajax code which works well in IE. I receive the responseText and thus the alert messages. However, i receive no responseText in Firefox. The code snippet is as follows. function pingip() { var ipaddress=document.baseform1.serviptxt.value; var xmlHttp; try { xmlHttp=new XMLHttpRequest(); } catch (exception) { try … | |
| The Javascript first... (Purpose: When a user hovers over any link that is contained inside of a <li> tag, then change the background color of the <li>...) 1 - May have an issue with my elements, being that it is not possible to change the background on <li> elements... 2 … |
Hello everyone, I ran into an issue that I could use a little help with. I need to search a large string, match certain parts of it, and replace a certain part of the certain part. The entire string is made up of spans, tables, and images, to build a … | |
I want to pass a large string in ajax request that would be parsed and resultant data is returned by the server. How can I achieve this ? Is POST method can read a large string from any html element using AJAX ? And if yes than how it is … | |
Hi All, I am facing CPU utilization issue while iterating through HTML table rows. I am generating an HTML table dynamically using javascript which contains atleast 500 rows. After the creation of table, the table cells are assigned with some values from a JSON object. The sample code for assigning … | |
hello I found a js that allows to use dependent drop down menus, and here it is [CODE]<script language="JavaScript"> function ShowReg(op) { document.getElementById('Car').style.display='none'; document.getElementById('Boat').style.display='none'; document.getElementById('Plane').style.display='none'; if (op == '1') { document.getElementById('Car').style.display="block"; } if (op == 2) { document.getElementById('Boat').style.display="block"; } if (op == 3) { document.getElementById('Plane').style.display="block"; } } </script> <select id="choice" … | |
Hi there, I have a little problem working with JavaScript, I was wondering if i could use some trick to call different variables with a base name. I'll explain it: var number1 = new Array(); var number2 = new Array(); number1[1] = "one"; number1[2] = "two"; number1[3] = "three"; number2[1] … |
The End.