Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 05:55 AM.