Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 67
Search took 0.28 seconds.
Search: Posts Made By: prajwala
Forum: JavaScript frameworks 12-19-2012, 09:53 AM
Replies: 3
Views: 369
Posted By prajwala
this is clients requirement...i cant make any...

this is clients requirement...i cant make any changes in it
Forum: JavaScript frameworks 12-19-2012, 09:21 AM
Replies: 3
Views: 369
Posted By prajwala
Question Linking html pages to the left nav menu options

I have created a .js file for left nav manu/sidebar.
I am calling this .js file in my .html page so that i dont have to write the code for left menu in each page.

Now if i click on any other link...
Forum: JavaScript frameworks 12-11-2012, 02:54 AM
Replies: 2
Views: 262
Posted By prajwala
It's working :thumbsup:...thanks a lot :)

It's working :thumbsup:...thanks a lot :)
Forum: JavaScript frameworks 12-10-2012, 10:58 AM
Replies: 2
Views: 262
Posted By prajwala
show/hide divs clicking on links

I want to show/hide divs on the click of links...how can i achieve this using jquery?

When i click on first link it should show first div...
if i click on 2nd link it shod open 2nd div and hide...
Forum: JavaScript frameworks 12-10-2012, 09:09 AM
Replies: 1
Views: 349
Posted By prajwala
Question Image width="auto" not working in IE

I am applying width auto to the images which is not working in IE9.

How can i get the width and height of the image on load so that i can apply width and height to the images dynamically.
Forum: HTML & CSS 12-07-2012, 02:57 AM
Replies: 6
Views: 418
Posted By prajwala
This is the requirement of my project. The page...

This is the requirement of my project.
The page can include multiple images.If there are small images then can fit into two columns.And if the image size is bigger then it should be centered aligned
Forum: HTML & CSS 12-06-2012, 10:17 AM
Replies: 6
Views: 418
Posted By prajwala
Image size will not be fixed in my case. ...

Image size will not be fixed in my case.
Considering dynamic size how can i handle the structure?

Can you please guide me on the same?
Forum: HTML & CSS 12-06-2012, 05:45 AM
Replies: 6
Views: 418
Posted By prajwala
Question Image alignment

i have a page which contains only images.

if only 1 image is there then it should be center aligned
if 2 images are there then it should be left and right aligned.
if there
is a case where...
Forum: HTML & CSS 11-05-2012, 04:28 AM
Replies: 2
Views: 364
Posted By prajwala
Question how to expand child div as per the parent div and vice versa

The below is my 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>...
Forum: JavaScript programming 10-23-2012, 11:22 AM
Replies: 2
Views: 261
Posted By prajwala
it worked...thanks :)

it worked...thanks :)
Forum: JavaScript programming 10-23-2012, 06:35 AM
Replies: 2
Views: 261
Posted By prajwala
Question How to remove/delete LI using javascript

<html>
<head>
<script type="text/javascript">
function deleteLi(){
var LI1=document.getElementById('deleteMe');
LI1.remove();

}
</script>
</head>
Forum: JavaScript programming 10-18-2012, 08:02 AM
Replies: 2
Views: 174
Posted By prajwala
Hey thanks...it worked :)

Hey thanks...it worked :)
Forum: JavaScript programming 10-18-2012, 06:12 AM
Replies: 2
Views: 174
Posted By prajwala
Question Regular Expressions for decimal

I need a regular expression for decimal.
Also, after entering any value after decimal point it should add 0 before decimal point.

Eg: if i enter .7 it should be converted to 0.7

Thanks in...
Forum: JavaScript programming 10-04-2012, 01:58 PM
Replies: 3
Views: 311
Posted By prajwala
Thumbs up Hey thanks all. It worked :)

Hey thanks all.
It worked :)
Forum: JavaScript programming 10-04-2012, 12:05 PM
Replies: 3
Views: 311
Posted By prajwala
Question How to use varioable in reguler expression???

I have called a function with passing 2 arguments in it.i is for id and other is for number.

I want to use that number in reguler expression.

Please find below code:

<html>
<head>
<script...
Forum: JavaScript programming 09-26-2012, 11:49 AM
Replies: 3
Views: 438
Posted By prajwala
we are not using jquery in our application.We are...

we are not using jquery in our application.We are using javascript
Forum: HTML & CSS 09-21-2012, 08:00 AM
Replies: 4
Views: 421
Posted By prajwala
Question Can we have a divs with relative under relative position?

<div>relative div
<div>relative div</div>
</div>

thanks in advance
Forum: JavaScript programming 09-18-2012, 07:37 AM
Replies: 3
Views: 438
Posted By prajwala
Question Ellipsis not working in blackberry os 5

.ellipsis {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

What would be the solution/alternative to this.?

Thanks in advance
Forum: JavaScript frameworks 07-09-2012, 11:55 AM
Replies: 1
Views: 274
Posted By prajwala
Question how to fetch images from xml to div using jquery

how to fetch images from xml to div using jquery
Forum: JavaScript programming 06-14-2011, 09:46 AM
Replies: 3
Views: 336
Posted By prajwala
thanks it worked :)

thanks it worked :)
Forum: JavaScript programming 06-14-2011, 08:48 AM
Replies: 3
Views: 336
Posted By prajwala
Question regular expression for citi

I want a regular expression for Citi where first character should not be a blank space.

Thanks in advance
Forum: HTML & CSS 01-31-2011, 06:19 AM
Replies: 2
Views: 2,940
Posted By prajwala
ok thanx

ok thanx
Forum: HTML & CSS 01-28-2011, 02:21 PM
Replies: 2
Views: 2,940
Posted By prajwala
Question truncate text through css

We are trying to truncate the text through css
<html>
<head>
<style type="text/css">
.truncate {
width: 100px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
...
Forum: ASP.NET 01-28-2011, 09:50 AM
Replies: 0
Views: 1,628
Posted By prajwala
ellipsis(text-overflow) Not working for grid

We are trying to truncate the text in one column of the grid.We have given a fixed width to the grid and applied a text-overflow:ellipsis property to the column.

Code:
<telerik:RadCodeBlock...
Forum: JavaScript programming 12-13-2010, 01:49 PM
Replies: 1
Views: 2,811
Posted By prajwala
Question How to open a radwindow at the center of the screen

I have a popup(telerik radwindow) which is in iframe.And i wnt that popup to be opened at the center of the screen and not at the center of iframe.
If I scroll the page it should reamain at the...
Showing results 1 to 25 of 67

 
Forum Jump

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