Forum: JavaScript / DHTML / AJAX Jul 7th, 2009 |
| Replies: 2 Views: 343 Ok. I got it to work with [\\\\]. But i didn't understand why you need four. They had tried explaining in that site but i didn't understand. |
Forum: JavaScript / DHTML / AJAX Jul 7th, 2009 |
| Replies: 5 Views: 1,245 |
Forum: JavaScript / DHTML / AJAX Jul 7th, 2009 |
| Replies: 2 Views: 343 <html>
<body>
<script type="text/javascript">
var str = "r'i`t\"291134837u";
var invalidChar = new RegExp("[\',\",\`]","gi");
document.write(str.match(invalidChar));
</script>
</body> |
Forum: JavaScript / DHTML / AJAX Jul 3rd, 2009 |
| Replies: 5 Views: 1,245 Hi,
I got the answer. I've used a css class to configure its display property as none. Now how do i access this property to set it?
As in how are the getters and setters for this method defined? |
Forum: JavaScript / DHTML / AJAX Jul 3rd, 2009 |
| Replies: 5 Views: 1,245 Thanks for the code. It works fine.
My page has a lot of elements, so when the page loads you can see all the items for a second before they disappear because of the code.
Is there anyway... |
Forum: JavaScript / DHTML / AJAX Jul 1st, 2009 |
| Replies: 5 Views: 1,245 Hi,
this is my problem:
1. There are two div elements in my page.
2. When the page loads only one is supposed to be visible.(This is where i'm getting stuck)
3. There are a series of checkboxes.... |