Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 6
1
2
3
>
Last
»
Showing results 1 to 25 of 129
Search took
0.26
seconds.
Search:
Posts Made By:
niralsoni
Forum:
JavaScript programming
05-14-2013, 03:07 PM
Replies:
4
Input data from array into ul list
Views:
163
Posted By
niralsoni
var items = ['Start','Trident','Internet Explorer...
var items = ['Start','Trident','Internet Explorer 4.0','Win 95+','4','X'];
var menuObj = $('#jMenu');
// $(menuObj).empty(); // to clear items before insertion
$.each(items, function() {
...
Forum:
JavaScript frameworks
04-29-2013, 03:44 PM
Replies:
1
Loop through table with specific conditions (turning data into an xml string)
Views:
179
Posted By
niralsoni
function getData() { var data = []; ...
function getData() {
var data = [];
$('#table tr')
.filter(function(rowIndex) {return $("img[src='images/checkmark.png']", this).length == 1; })
.each(function(rowIndex, row) {
...
Forum:
JavaScript programming
04-17-2013, 05:01 PM
Replies:
1
Help with Script Change
Views:
127
Posted By
niralsoni
So whats the problem ? var sndCombosData...
So whats the problem ?
var sndCombosData = new Array(
new MCComboItem( 'Australia', 'SA2', '',
new Array(
new MCComboItem( 'New South Wales', 'nsw', 'The SA2B1', null ),...
Forum:
HTML & CSS
04-05-2013, 03:22 PM
Replies:
26
Second sidebar
Views:
520
Posted By
niralsoni
try changing the width of your main area, or...
try changing the width of your main area,
or else, provide your piece of code...
Forum:
JavaScript programming
03-01-2013, 11:04 AM
Replies:
1
Navigation bar throwing error
Views:
227
Posted By
niralsoni
Have you followed correct steps as mentioned in...
Have you followed correct steps as mentioned in the Dynamic Drive website from where you picked this script ? http://www.dynamicdrive.com/dynamicindex1/ddtabdemos.htm
I compared your script with...
Forum:
JavaScript programming
03-01-2013, 10:53 AM
Replies:
5
Javascripting- how do I reset a script/function?
Views:
295
Posted By
niralsoni
What I understand from the function you are...
What I understand from the function you are calling on click of the "GO" button is to dynamically create "X" symbols until its count reaches to the value provided in the text box.
If that is...
Forum:
Post a JavaScript
02-26-2013, 01:37 PM
Replies:
0
Data Analyzer: HTML Table to Chart
Views:
440
Posted By
niralsoni
Data Analyzer: HTML Table to Chart
Hello Friends,
I have designed a utility to convert existing HTML table data into chart (used Open Flash Chart library for demonstration), dynamically.
It can be integrated with any web based...
Forum:
JavaScript programming
02-18-2013, 10:43 AM
Replies:
5
Need help on real-time calculation for array
Views:
410
Posted By
niralsoni
<html> <body> <script type="text/javascript">...
<html>
<body>
<script type="text/javascript">
function addInput() {
// get reference to the existing table object
var tbl = document.getElementById('tblAddress');
// get total number of...
Forum:
HTML & CSS
02-15-2013, 01:47 PM
Replies:
5
Need help on layout positioning
Views:
323
Posted By
niralsoni
Hey Frank, I know my knowledge about HTML,...
Hey Frank,
I know my knowledge about HTML, CSS is limited and outdated. But I still try to provide solutions with limited access to the tools and libraries at my work-place.
Could you please...
Forum:
JavaScript programming
02-15-2013, 10:46 AM
Replies:
5
Need help on real-time calculation for array
Views:
410
Posted By
niralsoni
<html> <body> <script type="text/javascript">...
<html>
<body>
<script type="text/javascript">
function addInput(){
var tbl = document.getElementById('tblAddress');
var lastRow = tbl.rows.length;
var row =...
Forum:
HTML & CSS
02-15-2013, 10:24 AM
Replies:
5
Need help on layout positioning
Views:
323
Posted By
niralsoni
<div> <div style="float: left"> <table...
<div>
<div style="float: left">
<table border="0" cellspacing="0" cellpadding="5">
<tr>
<td align="right">Customer :</td>
<td align="left"><INPUT type="text" name=""></td>
</tr>...
Forum:
HTML & CSS
02-14-2013, 10:00 AM
Replies:
4
How to add link to image without misaligning
Views:
337
Posted By
niralsoni
I am not sure about why its happening... May be...
I am not sure about why its happening... May be some other css written for ANCHOR tag which might be overriding it.
Anyway, if you haven't found a solution yet, I have an alternate option -
...
Forum:
JavaScript frameworks
02-08-2013, 04:54 PM
Replies:
2
Should I do this with HTML or jQuery loop
Views:
194
Posted By
niralsoni
Well, as of now it would look fine, but when you...
Well, as of now it would look fine, but when you are actually adding the items to it, you may face some problems.
Following snippet might help you in achieving same using JavaScript (you can...
Forum:
HTML & CSS
02-08-2013, 11:36 AM
Replies:
2
selecting the right image
Views:
285
Posted By
niralsoni
In the run-slideshow.js file, you can make...
In the run-slideshow.js file, you can make following changes -
$("#showcase").awShowcase(
{
content_width: 960, // change container width here
content_height: 345, //...
Forum:
Post a JavaScript
02-08-2013, 11:19 AM
Replies:
17
JS++ cool idea and technique!
Views:
1,237
Posted By
niralsoni
Doesn't makes any sense.
Doesn't makes any sense.
Forum:
JavaScript frameworks
02-08-2013, 11:12 AM
Replies:
3
A link on click call and animate div of another page using jquery
Views:
311
Posted By
niralsoni
$('#home').click(function() { $('html,...
$('#home').click(function() {
$('html, body').animate({
scrollTop: $(top.frames['f1'].document.getElementById('one')).offset().top
},2000);
});
Forum:
DOM and JSON scripting
02-08-2013, 11:04 AM
Replies:
3
JS selector engine - array issue
Views:
423
Posted By
niralsoni
Well, I appreciate your affort. But the thing is...
Well, I appreciate your affort. But the thing is without having proper knowledge of any programming language, you can't just start implementing your idea.
I would prefer you to start understanding...
Forum:
JavaScript programming
02-08-2013, 10:49 AM
Replies:
2
Simple canvas mouse Coordination code not adding up
Views:
258
Posted By
niralsoni
First, in function cnvs_cords(event), x and y...
First, in function cnvs_cords(event), x and y are defined as global variables.
Second, in function drawScene(), x and y are defined as local variables, which overrides mouse coordinates.
...
Forum:
DOM and JSON scripting
02-07-2013, 04:37 PM
Replies:
3
JS selector engine - array issue
Views:
423
Posted By
niralsoni
And what is your exact idea behind designing a...
And what is your exact idea behind designing a new "Selector Engine" that too without experienced in JavaScript ??
Forum:
JavaScript programming
02-07-2013, 04:31 PM
Replies:
5
Resolved
Upgrading javascript function. No experience
Views:
239
Posted By
niralsoni
Well, I am not aware of this Spry widget. But,...
Well, I am not aware of this Spry widget. But, searching on google, I found following link -
http://adobe.github.com/Spry/samples/collapsiblepanel/CollapsiblePanelGroupSample.html
See if the...
Forum:
JavaScript frameworks
02-07-2013, 03:54 PM
Replies:
7
Help with cycle jquery plugin.
Views:
469
Posted By
niralsoni
URL correction - ...
URL correction -
http://winstonduke.com/waltzforlife
The JQuery cycle plugin itself tells the error -
/*!
* jQuery Cycle Plugin (with Transition Definitions)
* Examples and documentation...
Forum:
JavaScript programming
02-07-2013, 02:29 PM
Replies:
2
Issue with website Email Code
Views:
131
Posted By
niralsoni
This could be done by simply switching off the...
This could be done by simply switching off the JavaScript support in browser (aka disable JavaScript) which will not run any of your client-side validations.
Hence its a good practice to carry out...
Forum:
JavaScript programming
02-07-2013, 02:19 PM
Replies:
5
Resolved
Upgrading javascript function. No experience
Views:
239
Posted By
niralsoni
Change your code to - ...
Change your code to -
Spry.Widget.CollapsiblePanel.prototype.onTabClick = function(e)
{
if (this.isOpen())
this.close();
else
{
...
Forum:
JavaScript programming
02-07-2013, 02:12 PM
Replies:
13
Please Help. Javascript Syntax error with if statements
Views:
346
Posted By
niralsoni
In JavaScript, a statement terminates with a...
In JavaScript, a statement terminates with a semicolon ( ; )
You haven't provided a single semicolon anywhere in your code.
as far as the if else blocks concerned, there is no error. It might be...
Forum:
JavaScript programming
02-07-2013, 02:05 PM
Replies:
1
Accessing parent window from child window?
Views:
189
Posted By
niralsoni
As you are calling window.opener.setvalue(value)...
As you are calling window.opener.setvalue(value) function, setValue function must be in eventLog.jsp page rather then eventUsers.jsp
Alternatively, you must change your code to -
........
Showing results 1 to 25 of 129
Page 1 of 6
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
05:55 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.