15,113 Topics

Member Avatar for
Member Avatar for Priti_P

Hello , I want to show spinner while processing below data. // SHOW SPIINER HERE $.getJSON("./php/fetch_record.php",{Record_id: Schedule_id, ajax: 'true'}, function(j){ for (var i = 0; i < j.length; i++) { $.post("/Test/Simple_form_submit", { //variables here },function(data){ }); } // HIDE SPINNER HERE I had tried show and hide div here but …

Member Avatar for Priti_P
0
700
Member Avatar for nadiam

Hello, I was asked to try and create a table seating arrangement, something like [this site](http://www.weddingwire.com/wedding-planning/wedding-seating-tables.html) but i guess not so advanced as that because I may not be able to do it. Anyway, I haven't even started and I'm already stuck. I'm not sure where/how to start. Could someone …

0
150
Member Avatar for jeffcogswell

[COLOR="Red"][B]UPDATE: see author's comments after article[/B][/COLOR] When you develop for mobile devices these days, you pretty much have two paths you can take: You can use the OS manufacturer's SDK and develop native apps, or you can create an application that runs in the device's web browser. Developing for the …

Member Avatar for Batninja
3
2K
Member Avatar for SlashBunny

I'm creating a website with a list of company and their profile. So far I have been able to make a navigation list of company and their profile as AJAX page. <ul id="nav" style="float:left, margin: 10 10 0 10;"> <li><a href="company_1">Company 1</a></li> <li><a href="company_2">Company 2</a></li> <li><a href="company_3">Company 3</a></li> </ul> <div …

Member Avatar for DJBirdi
0
777
Member Avatar for Dani

Our up/down voting buttons don't do anything on iOS devices (iPhone, iPad). Confirmation that they work fine on Blackberry and other mobile devices. Additionally, they work fine on all desktop browsers, including Safari. HTML code looks like this: <div class="vote-arrow downvote" data-vote="-1">&nbsp;</div> <div class="vote" title="Vote on posts with a comment …

Member Avatar for JorgeM
2
357
Member Avatar for Hoa_2

I want to create a content slider with text and image will be animated 1 after 1 and multi background. I found http://tympanus.net/Development/ParallaxContentSlider/index2.html with text and image animated 1 after 1 but it just 1 background. Can you guy show me how to make multi background for this slider or …

0
46
Member Avatar for dwlamb

I have two forms that are fairly identical located on different pages of a site. In order to call distinct jQuery ajax functions there are two class names I need to alter. For one of the pages, I place this script <script> $(document).ready(function(){ $(".itemDelete").switchClass("itemDelete","LibraryItemDelete"); $(".itemEdit").switchClass("itemEdit","LibraryItemEdit"); }); </script> and it is …

Member Avatar for dwlamb
0
170
Member Avatar for dannjoroge

can any one please help me on how to write a jquery that checks two drop down inputs and determines the third from the database ..please help am really stuck

Member Avatar for JorgeM
0
43
Member Avatar for Priti_P

is there any option in javascript/jquery to know whether browser's javascripts are disabled or not? like if browser's javascripts are disabled then give alert to user that "Enable Javascript".

Member Avatar for almostbob
-1
104
Member Avatar for mehul12345

Hi, i need help creating a fuel volume calculator to estimate the gallons of fuel required to travel 5 distances so far the 5 distances in miles the user enters are stored in an array, however i need a sum to find the average of the five numbers here is …

Member Avatar for mehul12345
0
862
Member Avatar for Mian Sahib Jan

me have two projects now me want to call the function 0f one project an another project for example me have project A and B in A there are a javascript funtion which me want to call in project B on button click ...how it possible can any one explain …

Member Avatar for urtrivedi
0
153
Member Avatar for Himanshu Chawla

**I want to track Email if opened by user and increase the count in my database.** **I have tried a lot a things like image sending and bgsound but none of them worked. But now i will do with the help of image sending. I am not getting the idea …

Member Avatar for iamthwee
0
244
Member Avatar for brugernavn

Hello, I am trying to "transfer" geolocation-data to a php script. I think, that the reason it wont work is, i can't get the varible from outside the function. So far, i got this code. How do i get it to work?! :) <body onload="office_getLocation()"> <script src="min.js" type="text/javascript"></script> <script type="text/javascript"> …

Member Avatar for DJBirdi
0
502
Member Avatar for nadiam

Hi. i got table A(contact-names) which is where name are populated to from db and table B(guest-names) where names from table A will be appended to. this is the js i came up with to append the names: var msg2 = '<tr class="tr"><td><input type="text" name="GName" class="input-name" placeholder="Doubleclick on a name." …

Member Avatar for nadiam
0
491
Member Avatar for Dinesh Dev

Hi everyone I am working on a client server based project(I am new in this field) where I have to bring the name of all dir and files inside dir from server and show it to user.For client side I am using HTML+javascript+jquery, I am sending request through Ajax and …

Member Avatar for AleMonteiro
0
665
Member Avatar for dlmagers

Hello, everyone. I am working on an application that I think I may need a little help. Yes, I am new to this language so I hope you won't be to hard on me. I am sure this is something stupid (mistake) but if someone would lean a helping hand …

Member Avatar for dlmagers
0
265
Member Avatar for developer707

I am trying to get a variable from a javascript function, but I am having a problem getting it the variable value outside the function. The variable value can be outputted just fine inside the function. Here is the script, but how can I get the value of status and …

Member Avatar for developer707
0
593
Member Avatar for 9tontruck

I am trying to integrate Leaflet (http://leafletjs.com/index.html) I just copy-and-paste'd the very first demo code but it only displays a gray map.. Here is my code: <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script> <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" /> </head> <body> <div id='map'> <script> var map = $('#map'); map.css('height', 375); map.css('width', 500); var …

Member Avatar for 9tontruck
0
344
Member Avatar for iamthwee

Hi guys this one has got me stumped. I'm making a page builder where you can create column divs the maximum per line is 12, each one floated left. Trouble is I need a clear float when the div column exceeds 12. This is all dynamic being a drag and …

Member Avatar for iamthwee
0
222
Member Avatar for accra

Diafol, anybody pls help. i have this javascript code <script> FB.init({ appId : '00000000000000', frictionlessRequests: true, }); function sendRequestToRecipients() { var user_ids = document.getElementsByName("user_ids")[0].value; FB.ui({method: 'apprequests', message: 'Great App', to: user_ids, }, requestCallback); } function sendRequestViaMultiFriendSelector() { FB.ui({method: 'apprequests', message: 'My Great Request' }, requestCallback); } function requestCallback(response) { console.log(response); …

Member Avatar for accra
0
2K
Member Avatar for nadiam

Hello. I just thought of adding the js print function to a page im building. from what i read i know it is pretty straight forward, use window.print. i was thinking about some of these sites that have this printing function that when a button or link is clicked a …

Member Avatar for nadiam
0
3K
Member Avatar for amraam

Alrighty guys, I'm trying to get myself started with using an API called tinysong that'll use XML HTTP objects to take in specially formatted URLs to return a json object with song metadata. See [code](http://pastie.org/private/jrvd6jwi2biavkgwvz7o7w#2) . (BTW I have replaced myApiKey with my own API key.) I believe I've done …

Member Avatar for AleMonteiro
0
266
Member Avatar for Bharadwajcvrg

Hi Team, I am trying to enable only the upcoming 2weeks i.e from current week friday to the second week thursday. For example: today's date is 25th so the upcoming friday will be 27th. So I would like to enable the date from 27th Friday June to July 10th Thursay. …

Member Avatar for DJBirdi
1
237
Member Avatar for ultmt.punisher

I am wondering how can I multiply an element value by selecting from `<option>` tag? for example I have a `<input type='text' value='9'> text tag` or `<span>9</span> tag` and I want to multiply its value by selecting option tag likewise <select name="" id=""> <option value="1/month">1/month</option> <option value="2/month">2/month</option> <option value="3/month">3/month</option> <option …

Member Avatar for ultmt.punisher
1
1K
Member Avatar for davy_yg

Hello all, How to create registation bar like the following link: [Registration bar](http://www.squline.com/en/register) You see that you can view the registration progress before you step in by numbers. How to create such a thing? Thanks in advance.

Member Avatar for iamthwee
0
52
Member Avatar for Raymond_4
Member Avatar for iConqueror
1
181
Member Avatar for munchlaxxx

I'm having some trouble adding more than 1 marker to my map. If I want to display one marker, it works fine. Here is what I have: <script src="https://maps.googleapis.com/maps/api/js"></script> <script> function initialize() { var map_canvas = document.getElementById('map_canvas'); var map_options = { center: new google.maps.LatLng(42.3581, -71.0636), zoom: 13, mapTypeId: google.maps.MapTypeId.ROADMAP } …

Member Avatar for iConqueror
0
265
Member Avatar for maxpaine69

Hi all, I have a asp:radiobuttonlist, that the data to create it comes from the Database, one of the option must turn visible, a text box, i have that done in codebehind in .net, but i think its lagging to much. the problem is how can i do thins in …

Member Avatar for maxpaine69
0
216
Member Avatar for Priti_P

Hello, I want to ask user about leaving page when there is some **not saved data** on page. I wrote code <script> window.onbeforeunload= function() { return "Save your data plz"; }; </script> But the problem is when am submitting data, then am rendering another page. Due to this confirm message, …

Member Avatar for urtrivedi
0
145
Member Avatar for queryEma

Good Afternoon, everyone. I am new to this forum so I honestly don't know what to expect. But I wanted to see if I could get some help here with a project that I am working on (No! it is NOT homework). Without giving all the specifies, which would take …

Member Avatar for pixelsoul
0
301

The End.