Posts by Viperz0r • 31 points
3 posts
-
1
votes2
answers243
viewsA: How do I hide the full url and leave only the main url visible?
This is through a "technique" called "url rewrite" and its implementation depends on the web server you are using.
-
1
votes2
answers1054
viewsA: How to take ID of inputs generated within DIV dynamically'
You can use $(this) to access the element you clicked on. Then just search for the input element inside that element and get the value. Taking your example would look like this:…
-
1
votes3
answers298
viewsA: Function . play() in jQuery
The method play belongs to the audio html tag. You have to directly access the html element and invoke the play method. To access the html element using jQuery: $('#aud1')[0].play()…